diff options
| author | 2011-08-05 10:23:22 -0700 | |
|---|---|---|
| committer | 2011-08-05 10:23:22 -0700 | |
| commit | c4dd43b4013eb0a027545597e4e0ddb8d2ec6286 (patch) | |
| tree | efc656fd341f99f96f453a0c7258ab430e4ad785 | |
| parent | d0c3f7e770d776808ea78fded3e0fb44e1b9d898 (diff) | |
| parent | 6cf602cd1de4fd1b6a8a5028ef10df0ffc57bacb (diff) | |
Merge "Fix crash in log message."
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java index 4ce1c8979a54..7d1aedcc1314 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java @@ -1366,7 +1366,7 @@ public class PhoneStatusBar extends StatusBar { } else if (CHATTY) { if (event.getAction() == MotionEvent.ACTION_DOWN) { Slog.d(TAG, String.format( - "panel: ACTION_DOWN at (%d, %d) mDisabled=0x%08x", + "panel: ACTION_DOWN at (%f, %f) mDisabled=0x%08x", event.getRawX(), event.getRawY(), mDisabled)); } } |