diff options
| author | 2014-03-21 19:10:50 +0000 | |
|---|---|---|
| committer | 2014-03-21 19:10:50 +0000 | |
| commit | 386fff993a205f551f4e3d6f8e31e0740365f727 (patch) | |
| tree | 77a1534720061cd073bf7fb0bee6efa01bb3ef7d | |
| parent | 7434fcec6928e9e570f7ab0bf033f04ca5a13ba1 (diff) | |
| parent | 5d9b153db373d974fe4a5b549872e9b81b632ac9 (diff) | |
Merge "lower the heads up threshold to exactly PRIORITY_HIGH"
| -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 6eb2ebe5a8c8..034edf947790 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 |