mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
1ff6a3a18d
fix maybe #1748. Maybe not, because actually I don't understand why issue #1748 even happened because we don't use the system background for the bubble but an own one (see conversation_item_sent.xml:50). Probably the system is somehow trying to forcefully create a dark mode. So, let's see whether this PR fixes the issue, if not, I'll try again.
17 lines
505 B
XML
17 lines
505 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<string-array name="pref_theme_entries" tools:ignore="InconsistentArrays">
|
|
<item>@string/pref_system_default</item>
|
|
<item>@string/pref_light_theme</item>
|
|
<item>@string/pref_dark_theme</item>
|
|
</string-array>
|
|
|
|
<string-array name="pref_theme_values" translatable="false" tools:ignore="InconsistentArrays">
|
|
<item>system</item>
|
|
<item>light</item>
|
|
<item>dark</item>
|
|
</string-array>
|
|
|
|
</resources>
|