diff options
author | Chris Wren <cwren@android.com> | 2014-03-21 14:31:05 -0400 |
---|---|---|
committer | Chris Wren <cwren@android.com> | 2014-03-21 15:08:42 -0400 |
commit | 5d9b153db373d974fe4a5b549872e9b81b632ac9 (patch) | |
tree | 51f1a5a3154fc5f7dcfcef90bda1ac44b6d194d9 /packages/SystemUI/src/com | |
parent | ac6e97a5a69738a1d32794fc76ca639201639501 (diff) | |
download | frameworks_base-5d9b153db373d974fe4a5b549872e9b81b632ac9.zip frameworks_base-5d9b153db373d974fe4a5b549872e9b81b632ac9.tar.gz frameworks_base-5d9b153db373d974fe4a5b549872e9b81b632ac9.tar.bz2 |
lower the heads up threshold to exactly PRIORITY_HIGH
Bug: 13452562
Change-Id: I945ce22fa7253ff84fcc3d72f4cb732921ba3489
Diffstat (limited to 'packages/SystemUI/src/com')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java index 6eb2ebe..034edf9 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java @@ -111,7 +111,7 @@ public abstract class BaseStatusBar extends SystemUI implements protected static final boolean ENABLE_HEADS_UP = true; // scores above this threshold should be displayed in heads up mode. - protected static final int INTERRUPTION_THRESHOLD = 11; + protected static final int INTERRUPTION_THRESHOLD = 10; protected static final String SETTING_HEADS_UP_TICKER = "ticker_gets_heads_up"; // Should match the value in PhoneWindowManager |