Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec0e096b authored by Brian Attwell's avatar Brian Attwell
Browse files

Fix button colors in alert dialogs

Bug: 21198043
Bug: 19410482
Change-Id: I8c423b759d0fe05e83718ba2ed2536795603df6a
parent 356e93de
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -219,6 +219,7 @@
        <item name="android:textColorPrimary">@color/primary_text_color</item>
        <item name="android:textColorSecondary">@color/secondary_text_color</item>
        <item name="android:listViewStyle">@style/ListViewStyle</item>
        <item name="android:colorAccent">@color/primary_color</item>
    </style>

    <style name="SectionDivider">
+2 −1
Original line number Diff line number Diff line
@@ -105,7 +105,8 @@ public class DatePickerDialog extends AlertDialog implements OnClickListener,
            int monthOfYear,
            int dayOfMonth,
            boolean yearOptional) {
        this(context, THEME_DEVICE_DEFAULT_LIGHT, callBack, year, monthOfYear, dayOfMonth,
        // Don't pass a theme id. Instead use the default alert dialog theme.
        this(context, /* themeId = */ -1, callBack, year, monthOfYear, dayOfMonth,
                yearOptional);
    }