fix settings background colour not being set

Signed-off-by: Harry Bond <me@hbond.xyz>
This commit is contained in:
Harry Bond 2024-12-29 22:05:11 +00:00
parent c953ffd70a
commit 2ab8eb336f
3 changed files with 4 additions and 3 deletions

View file

@ -393,7 +393,8 @@
android:configChanges="uiMode|orientation|screenLayout|screenSize"
android:screenOrientation="fullUser"
android:label="@string/settings"
android:parentActivityName="app.organicmaps.MwmActivity" />
android:parentActivityName="app.organicmaps.MwmActivity"
android:theme="@style/MwmTheme.CardBg"/>
<activity
android:name="app.organicmaps.help.HelpActivity"

View file

@ -5,7 +5,7 @@
<attr name="titleDialogTheme" format="reference" />
<attr name="textDialogTheme" format="reference" />
<attr name="windowBackgroundForced" format="reference|color" />
<attr name="cardBackground" format="reference" />
<attr name="cardBackground" format="color" />
<attr name="clickableBackground" format="reference" />
<attr name="statusBar" format="color" />
<attr name="secondary" format="color" />

View file

@ -22,7 +22,7 @@
</style>
<style name="MwmTheme.CardBg">
<item name="android:windowBackground">@color/bg_cards</item>
<item name="android:windowBackground">?cardBackground</item>
</style>
<style name="MwmTheme.WindowBg">