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

Unverified Commit bd4c197c authored by Jesse Chan's avatar Jesse Chan Committed by Michael Bestas
Browse files

Settings: Implement hide gestural navigation hint bar



Author: Jesse Chan <jc@lineageos.org>
Date:   Sun May 24 21:35:34 2020 +0800

    Settings: Implement hide gestural navigation hint bar [2/5]

    Change-Id: I14dd73414c9f7ee1b01f315c9eeae0fd3ac4f859
    Signed-off-by: default avatarJesse Chan <jc@lineageos.org>

Author: Bruno Martins <bgcngm@gmail.com>
Date:   Wed Mar 16 23:25:06 2022 +0000

    gestures: Set navbar hint switch required package

    Just to avoid showing the preference if for some reason the
    package is not present.

    Change-Id: Ifbf3434d1ad86e19278555a0003e19f3d289e402

Change-Id: I1089683a0ad4561bc303006ae61897ff44fff0e9
parent f948264a
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -47,4 +47,8 @@
    <string name="lockpattern_settings_enable_error_path_title">Show pattern error</string>
    <!-- Whether the dots will be drawn when using the lockscreen pattern -->
    <string name="lockpattern_settings_enable_dots_title">Show pattern dots</string>

    <!-- Navigation bar hint -->
    <string name="show_navbar_hint_title">Navigation hint</string>
    <string name="show_navbar_hint_summary">Show navigation hint bar at the bottom of the screen</string>
</resources>
+7 −0
Original line number Diff line number Diff line
@@ -23,6 +23,13 @@
    android:title="@string/gesture_settings_activity_title"
    settings:keywords="@string/keywords_gesture_navigation_settings">

    <lineageos.preference.LineageSystemSettingSwitchPreference
        android:key="navigation_bar_hint"
        android:title="@string/show_navbar_hint_title"
        android:summary="@string/show_navbar_hint_summary"
        android:defaultValue="true"
        settings:requiresPackage="org.lineageos.overlay.customization.navbar.nohint" />

    <PreferenceCategory
        android:key="assistant_gesture_category"
        android:persistent="false"