mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
In ag/28129361 add item dialog's color was changed to reference material color token defined in launcher theme. But add item activity inherits from Theme.Translucent.NoTitleBar for its appearance (while launcher theme uses deviceDefault.Light), so, cannot inherit as is from the launcher theme. Since, there is already a token specific for widget picker surface color imported via widgetTheme, using it so it stays in sync with main picker. Bug: 354604590 Test: Manual Flag: EXEMPT BUGFIX Change-Id: I61ed5e65b0efd065490a54251028cde5888e4391
8 lines
360 B
XML
8 lines
360 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:shape="rectangle" >
|
|
<solid android:color="?attr/widgetPickerPrimarySurfaceColor" />
|
|
<corners
|
|
android:topLeftRadius="?android:attr/dialogCornerRadius"
|
|
android:topRightRadius="?android:attr/dialogCornerRadius" />
|
|
</shape> |