Browse Source

Merge pull request #61472 from madmiraal/fix-19835

Only use Android fullscreen theme for splash screen
Rémi Verschelde 3 years ago
parent
commit
e633ace8c0
1 changed files with 2 additions and 2 deletions
  1. 2 2
      platform/android/java/app/res/values/themes.xml

+ 2 - 2
platform/android/java/app/res/values/themes.xml

@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="utf-8"?>
 <?xml version="1.0" encoding="utf-8"?>
 <resources>
 <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:windowBackground">@drawable/splash_drawable</item>
 		<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
 		<item name="android:windowLayoutInDisplayCutoutMode">shortEdges</item>
 	</style>
 	</style>