Skip to content

Commit

Permalink
Fix #272 increase default opaque percentage (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
firemaples authored May 3, 2023
1 parent 9176b1c commit 25501b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ object SettingManager {
get() = preferences.getInt(PREF_FADE_OUT_AFTER_SECONDS, 5) * 1000L

val opaquePercentageToFadeOut: Float
get() = preferences.getInt(PREF_OPAQUE_PERCENTAGE, 20).toFloat() / 100f
get() = preferences.getInt(PREF_OPAQUE_PERCENTAGE, 60).toFloat() / 100f

val enableUnrecommendedLangItems: Boolean
get() = preferences.getBoolean(PREF_ENABLE_UNRECOMMENDED_LANG_ITEMS, false)
Expand Down

0 comments on commit 25501b7

Please sign in to comment.