Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions res/values/cr_strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1683,4 +1683,19 @@ A small donation helps keep this project alive and improving. You can dismiss th
<string name="reading_engine_mode_title">Comfort display (Reading mode)</string>
<string name="display_engine_default">Default</string>
<string name="display_engine_mode_footer_text">Inspired by Sony\'s Bravia/X-Reality engine, the Display Engine features Vivid mode for enhanced brightness and color saturation, X-Reality mode for improved detail and color accuracy, and Triluminous mode for a wider color range.</string>

<!-- Gesture navigation space -->
<string name="gesture_navbar_space_title">Gesture navigation space</string>
<string name="gesture_navbar_space_summary">Control the space reserved at the bottom of the screen</string>
<string-array name="gesture_navbar_space_entries">
<item>Default</item>
<item>Compact</item>
<item>Minimal</item>
</string-array>
<string-array name="gesture_navbar_space_values" translatable="false">
<item>0</item>
<item>1</item>
<item>2</item>
</string-array>

</resources>
2 changes: 2 additions & 0 deletions src/com/crdroid/settings/fragments/Navigation.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ public static void reset(Context mContext) {
Settings.System.GESTURE_NAVBAR_LENGTH_MODE, 1, UserHandle.USER_CURRENT);
Settings.System.putIntForUser(resolver,
Settings.System.GESTURE_NAVBAR_HEIGHT_MODE, 3, UserHandle.USER_CURRENT);
Settings.System.putIntForUser(resolver,
Settings.System.GESTURE_NAVBAR_SPACE_MODE, 0, UserHandle.USER_CURRENT);
}

@Override
Expand Down