summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-05-31 12:39:36 +0200
committerGitHub <noreply@github.com>2022-05-31 12:39:36 +0200
commite633ace8c0b10f19d11ffbdc652c8139c8fd60bc (patch)
treea620b825618138a99a612ea4d9363eb2d4f6f902
parent68bf4eb100a6b49133157b0ecf8c55119b575be8 (diff)
parentd0cb299f04f2a7b15cf410810bbcabf79562d092 (diff)
Merge pull request #61472 from madmiraal/fix-19835
Only use Android fullscreen theme for splash screen
-rw-r--r--platform/android/java/app/res/values/themes.xml4
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>