Skip to content

Commit 365ece1

Browse files
dsandlerAndroid (Google) Code Review
authored andcommitted
Merge "Dreams/Sleep Mode is now Daydreams." into jb-mr1-dev
2 parents 5d6562d + bd9cafa commit 365ece1

File tree

6 files changed

+3
-3
lines changed

6 files changed

+3
-3
lines changed

packages/SystemUI/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@
214214

215215
<activity android:name=".Somnambulator"
216216
android:label="@string/start_dreams"
217-
android:icon="@mipmap/ic_launcher_dreams"
217+
android:icon="@mipmap/ic_daydreams"
218218
android:theme="@android:style/Theme.Wallpaper.NoTitleBar"
219219
android:exported="true"
220220
android:excludeFromRecents="true"
8.62 KB
Loading
5.14 KB
Loading
12.7 KB
Loading

packages/SystemUI/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@
456456
<string name="jelly_bean_dream_name">BeanFlinger</string>
457457

458458
<!-- Name of the launcher shortcut icon that allows dreams to be started immediately [CHAR LIMIT=20] -->
459-
<string name="start_dreams">Sleep Now</string>
459+
<string name="start_dreams">Daydream</string>
460460

461461
<!-- Textual description of Ethernet connections -->
462462
<string name="ethernet_label">Ethernet</string>

packages/SystemUI/src/com/android/systemui/Somnambulator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public void onStart() {
4343
| Intent.FLAG_ACTIVITY_NEW_TASK);
4444
Intent resultIntent = new Intent();
4545
resultIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
46-
Intent.ShortcutIconResource.fromContext(this, R.mipmap.ic_launcher_dreams));
46+
Intent.ShortcutIconResource.fromContext(this, R.mipmap.ic_daydreams));
4747
resultIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
4848
resultIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.start_dreams));
4949
setResult(RESULT_OK, resultIntent);

0 commit comments

Comments
 (0)