diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2022-05-27 16:16:06 +0200 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2022-05-27 16:54:44 +0200 |
commit | d0cb299f04f2a7b15cf410810bbcabf79562d092 (patch) | |
tree | 9db0923683588b98a1ca6bf0795ff4218d0bdcd4 /platform/android/java/app/res/values/themes.xml | |
parent | 8a21f7231f0851aec4c06abee28a549b1f8083fd (diff) |
Only use Android fullscreen theme for splash screen
Diffstat (limited to 'platform/android/java/app/res/values/themes.xml')
-rw-r--r-- | platform/android/java/app/res/values/themes.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/android/java/app/res/values/themes.xml b/platform/android/java/app/res/values/themes.xml index 99f723f5ba..d64b50ca45 100644 --- a/platform/android/java/app/res/values/themes.xml +++ b/platform/android/java/app/res/values/themes.xml @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="utf-8"?> <resources> - <style name="GodotAppMainTheme" parent="@android:style/Theme.Black.NoTitleBar.Fullscreen"/> + <style name="GodotAppMainTheme" parent="@android:style/Theme.Black.NoTitleBar"/> - <style name="GodotAppSplashTheme" parent="@style/GodotAppMainTheme"> + <style name="GodotAppSplashTheme" parent="@android:style/Theme.Black.NoTitleBar.Fullscreen"> <item name="android:windowBackground">@drawable/splash_drawable</item> <item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item> </style> |