am 6e1fd5b2: Prevents BadTokenException on rotation of the gestures window.
Merge commit '6e1fd5b2b0b79b8e97d458c40bc9ac1710c2852b' * commit '6e1fd5b2b0b79b8e97d458c40bc9ac1710c2852b': Prevents BadTokenException on rotation of the gestures window.
This commit is contained in:
commit
ed447f613b
|
@ -601,11 +601,11 @@ public final class Launcher extends Activity implements View.OnClickListener, On
|
|||
mWorkspace.post(new Runnable() {
|
||||
public void run() {
|
||||
showGesturesPanel(false);
|
||||
if (gesture != null) {
|
||||
if (gesture != null && mWorkspace.getParent() != null) {
|
||||
mGesturesProcessor.matchGesture(gesture);
|
||||
mWorkspace.post(new Runnable() {
|
||||
public void run() {
|
||||
if (gesture != null) {
|
||||
if (gesture != null && mWorkspace.getParent() != null) {
|
||||
mGesturesOverlay.setGesture(gesture);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue