diff options
author | Allan Wang <me@allanwang.ca> | 2019-05-01 14:54:41 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2019-05-01 14:54:41 -0700 |
commit | 5bcf9c8eb672e8721b3b466130d6556f0f72e1d7 (patch) | |
tree | 8af16cd4511ef02d7b3f3e1723dced9ced2230d4 /app/src/main/kotlin | |
parent | f10b71944725e507a9e1ba14cef33030b0ebaf9e (diff) | |
download | frost-5bcf9c8eb672e8721b3b466130d6556f0f72e1d7.tar.gz frost-5bcf9c8eb672e8721b3b466130d6556f0f72e1d7.tar.bz2 frost-5bcf9c8eb672e8721b3b466130d6556f0f72e1d7.zip |
Update theme for messenger switch page
Diffstat (limited to 'app/src/main/kotlin')
-rw-r--r-- | app/src/main/kotlin/com/pitchedapps/frost/utils/Utils.kt | 5 |
1 files changed, 3 insertions, 2 deletions
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() |