Skip to content

Commit

Permalink
fix(android): custom theme ignored by modal/translucent window
Browse files Browse the repository at this point in the history
- Regression introduced as of Titanium 9.0.0
  • Loading branch information
jquick-axway committed Apr 8, 2020
1 parent b6fc721 commit 4a8247b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/titanium/res/values/values.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@
<style name="Theme.Titanium" parent="@style/Base.Theme.Titanium.Splash"/>

<!-- Theme to be used by Titanium's translucent windows and modal windows. -->
<style name="Theme.Titanium.Translucent" parent="@style/Base.Theme.Titanium.Basic">
<style name="Theme.Titanium.Translucent" parent="@style/Base.Theme.Titanium.Customizable">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:colorBackgroundCacheHint">@null</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowAnimationStyle">@android:style/Animation</item>
</style>

<style name="Theme.AppCompat.Translucent" parent="@style/Base.Theme.Titanium.Customizable">
<style name="Theme.AppCompat.Translucent" parent="@style/Base.Theme.Titanium.Basic">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:colorBackgroundCacheHint">@null</item>
<item name="android:windowIsTranslucent">true</item>
Expand Down

0 comments on commit 4a8247b

Please sign in to comment.