AndroidManifest: Workaround the crash when changing Theme while in settings

Essentially extends upon https://github.com/dolphin-emu/dolphin/pull/8288.

Original description:
"The "correct way" would be to fully save and restore data on onSaveInstanceState and restore it back on onCreate. I tried to do that first.
As there is various conflicts with doing this without some form of refactor due to how the lifecycle diverges and is baked-in to the application, ignoring Activity recreation on orientation change should work well enough and we don't draw anything different in settings on landscape mode or ui mode anyway."
This commit is contained in:
FearlessTobi 2020-04-12 07:40:36 +02:00 committed by xperia64
parent f0dde11030
commit bcc5888173

View File

@ -40,7 +40,7 @@
<activity
android:name="org.citra.citra_emu.features.settings.ui.SettingsActivity"
android:configChanges="orientation|screenSize"
android:configChanges="orientation|screenSize|uiMode"
android:theme="@style/CitraSettings"
android:label="@string/preferences_settings"/>