summaryrefslogtreecommitdiffstats
path: root/services/java
diff options
context:
space:
mode:
authorBryan Owens <djbryan3540@gmail.com>2016-05-07 20:51:27 -0500
committerd34d <clark@cyngn.com>2016-06-14 14:37:17 -0700
commit5f8d3f813d6d580b060a783c8271b6cec3794d30 (patch)
treea3913a7b0678388006fbaa743ee80566d53daf53 /services/java
parent91642748f97f26b1194f562a2219749397832b5d (diff)
downloadframeworks_base-5f8d3f813d6d580b060a783c8271b6cec3794d30.zip
frameworks_base-5f8d3f813d6d580b060a783c8271b6cec3794d30.tar.gz
frameworks_base-5f8d3f813d6d580b060a783c8271b6cec3794d30.tar.bz2
Themes: Expose Power Dialogs
This will give themes the ability to invert the three power dialogs without editing a main resource Change-Id: Ibeab94add8ce8c18955576dc49c441883feb18d6 Signed-off-by: Bryan Owens <djbryan3540@gmail.com>
Diffstat (limited to 'services/java')
-rw-r--r--services/java/com/android/server/SystemServer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java
index f6a0619..d69fe11 100644
--- a/services/java/com/android/server/SystemServer.java
+++ b/services/java/com/android/server/SystemServer.java
@@ -329,7 +329,7 @@ public final class SystemServer {
private void createSystemContext() {
ActivityThread activityThread = ActivityThread.systemMain();
mSystemContext = activityThread.getSystemContext();
- mSystemContext.setTheme(android.R.style.Theme_DeviceDefault_Light_DarkActionBar);
+ mSystemContext.setTheme(com.android.internal.R.style.Theme_Power_Dialog);
}
/**