diff options
author | Selim Cinek <cinek@google.com> | 2015-09-22 10:05:29 +0200 |
---|---|---|
committer | Selim Cinek <cinek@google.com> | 2015-09-22 10:05:29 +0200 |
commit | bb998c927c5a908664e4508f736226e9025ac84b (patch) | |
tree | f2c2fc58919c6a82452a245af263ce007a854cb1 /packages | |
parent | dca3b2f74f7979e87e2654baf83df42483ef4388 (diff) | |
download | frameworks_base-bb998c927c5a908664e4508f736226e9025ac84b.zip frameworks_base-bb998c927c5a908664e4508f736226e9025ac84b.tar.gz frameworks_base-bb998c927c5a908664e4508f736226e9025ac84b.tar.bz2 |
Extended the maximum pulsing duration when dozing
Change-Id: Ib0f4cb4c7a011ce6df4100189b79ed4c2476c2c6
Diffstat (limited to 'packages')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/DozeParameters.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/DozeParameters.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/DozeParameters.java index 5a2fa3b..1d890d0 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/DozeParameters.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/DozeParameters.java @@ -33,7 +33,7 @@ public class DozeParameters { private static final String TAG = "DozeParameters"; private static final boolean DEBUG = Log.isLoggable(TAG, Log.DEBUG); - private static final int MAX_DURATION = 10 * 1000; + private static final int MAX_DURATION = 60 * 1000; private final Context mContext; |