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

Commit 7db3e37b authored by Brian Attwell's avatar Brian Attwell Committed by Android Git Automerger
Browse files

am ec0e096b: Fix button colors in alert dialogs

* commit 'ec0e096b':
  Fix button colors in alert dialogs
parents 7c2bdd1d ec0e096b
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);
    }