summaryrefslogtreecommitdiffstats
path: root/services
diff options
context:
space:
mode:
authorJohan Alfven <johan.alfven@sonyericsson.com>2010-05-12 09:00:28 +0200
committerJohan Redestig <johan.redestig@sonyericsson.com>2010-05-12 09:01:56 +0200
commit6c3da7fbc21fa8978c6f7b703ec87874d53ec760 (patch)
tree6462262413e83015a8c46f54d37b300524bf88b9 /services
parent26abeae75baa471fa7c8d686083c2f12f3246968 (diff)
downloadframeworks_base-6c3da7fbc21fa8978c6f7b703ec87874d53ec760.zip
frameworks_base-6c3da7fbc21fa8978c6f7b703ec87874d53ec760.tar.gz
frameworks_base-6c3da7fbc21fa8978c6f7b703ec87874d53ec760.tar.bz2
Corrected debug message in WindowManager
When WindowManager reports "Key dispatching timed out" it prints out information about the window state that was present at the time the key was sent to that window. There is a minor error in the class representing the recorded window state so that the currently focused window is printed instead of the recorded focused window. Change-Id: I29a5471ef725e30f812ffd57fd4597ce81c0c7f2
Diffstat (limited to 'services')
-rw-r--r--services/java/com/android/server/WindowManagerService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/java/com/android/server/WindowManagerService.java b/services/java/com/android/server/WindowManagerService.java
index 2bcf4cd..b90b03b 100644
--- a/services/java/com/android/server/WindowManagerService.java
+++ b/services/java/com/android/server/WindowManagerService.java
@@ -5478,7 +5478,7 @@ public class WindowManagerService extends IWindowManager.Stub
+ " fin=" + finished + " gfw=" + gotFirstWindow
+ " ed=" + eventDispatching + " tts=" + timeToSwitch
+ " wf=" + wasFrozen + " fp=" + focusPaused
- + " mcf=" + mCurrentFocus + "}}";
+ + " mcf=" + curFocus + "}}";
}
};
private DispatchState mDispatchState = null;