From 5bcf9c8eb672e8721b3b466130d6556f0f72e1d7 Mon Sep 17 00:00:00 2001 From: Allan Wang Date: Wed, 1 May 2019 14:54:41 -0700 Subject: Update theme for messenger switch page --- app/src/main/kotlin/com/pitchedapps/frost/utils/Utils.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'app/src/main/kotlin') diff --git a/app/src/main/kotlin/com/pitchedapps/frost/utils/Utils.kt b/app/src/main/kotlin/com/pitchedapps/frost/utils/Utils.kt index 76ffd8cd..557980af 100644 --- a/app/src/main/kotlin/com/pitchedapps/frost/utils/Utils.kt +++ b/app/src/main/kotlin/com/pitchedapps/frost/utils/Utils.kt @@ -186,7 +186,8 @@ fun MaterialDialog.Builder.theme(): MaterialDialog.Builder { } fun Activity.setFrostTheme(forceTransparent: Boolean = false) { - val isTransparent = (Color.alpha(Prefs.bgColor) != 255) || (Color.alpha(Prefs.headerColor) != 255) || forceTransparent + val isTransparent = + (Color.alpha(Prefs.bgColor) != 255) || (Color.alpha(Prefs.headerColor) != 255) || forceTransparent if (Prefs.bgColor.isColorDark) setTheme(if (isTransparent) R.style.FrostTheme_Transparent else R.style.FrostTheme) else @@ -357,7 +358,7 @@ val dependentSegments = arrayOf( ) inline val String?.isExplicitIntent - get() = this != null && startsWith("intent://") + get() = this != null && (startsWith("intent://") || startsWith("market://")) fun Context.frostChangelog() = showChangelog(R.xml.frost_changelog, Prefs.textColor) { theme() -- cgit v1.2.3