Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f5e3f276 authored by tibbi's avatar tibbi
Browse files

add a toggle for showing drag info bubble

parent 5e211707
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -125,4 +125,8 @@ open class BaseConfig(val context: Context) {
    var wasSharedThemeAfterUpdateChecked: Boolean
        get() = prefs.getBoolean(WAS_SHARED_THEME_AFTER_UPDATE_CHECKED, false)
        set(wasSharedThemeAfterUpdateChecked) = prefs.edit().putBoolean(WAS_SHARED_THEME_AFTER_UPDATE_CHECKED, wasSharedThemeAfterUpdateChecked).apply()

    var showInfoBubble: Boolean
        get() = prefs.getBoolean(SHOW_INFO_BUBBLE, true)
        set(showInfoBubble) = prefs.edit().putBoolean(SHOW_INFO_BUBBLE, showInfoBubble).apply()
}
+1 −0
Original line number Diff line number Diff line
@@ -35,6 +35,7 @@ val IS_USING_SHARED_THEME = "is_using_shared_theme"
val WAS_SHARED_THEME_FORCED = "was_shared_theme_forced"
val WAS_CUSTOM_THEME_SWITCH_DESCRIPTION_SHOWN = "was_custom_theme_switch_description_shown"
val WAS_SHARED_THEME_AFTER_UPDATE_CHECKED = "was_shared_theme_after_update_checked"
val SHOW_INFO_BUBBLE = "show_info_bubble"

// licenses
val LICENSE_KOTLIN = 1
+1 −0
Original line number Diff line number Diff line
@@ -225,6 +225,7 @@
    <string name="password_protect_hidden_items">Password protect hidden item visibility</string>
    <string name="password_protect_whole_app">Password protect the whole application</string>
    <string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
    <string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>

    <!-- About -->
    <string name="about">O aplikaci</string>
+1 −0
Original line number Diff line number Diff line
@@ -225,6 +225,7 @@
    <string name="password_protect_hidden_items">Password protect hidden item visibility</string>
    <string name="password_protect_whole_app">Password protect the whole application</string>
    <string name="keep_last_modified">Keep old last-modified value at file copy/move/rename</string>
    <string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>

    <!-- About -->
    <string name="about">About</string>
+1 −0
Original line number Diff line number Diff line
@@ -225,6 +225,7 @@
    <string name="password_protect_hidden_items">Verstecktes mit Muster/PIN schützen</string>
    <string name="password_protect_whole_app">Gesamte App mit Passwort schützen</string>
    <string name="keep_last_modified">Beim Kopieren/Verschieben/Umbenennen die alte Änderungszeit beibehalten</string>
    <string name="show_info_bubble">Show an info bubble at scrolling items by scrollbar dragging</string>

    <!-- About -->
    <string name="about">Über</string>
Loading