Skip to content

Commit

Permalink
Changed the default of the switches
Browse files Browse the repository at this point in the history
  • Loading branch information
ge78fug committed Apr 3, 2023
1 parent 040165c commit 00f7169
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ protected void migrate(final Context context) {
@Override
protected void migrate(final Context context) {
boolean brightnessGestureSwitch = sp.getBoolean(
context.getString(R.string.left_gesture_control_key), false);
context.getString(R.string.left_gesture_control_key), true);
boolean volumeGestureSwitch = sp.getBoolean(
context.getString(R.string.right_gesture_control_key), false);
context.getString(R.string.right_gesture_control_key), true);

SharedPreferences.Editor editor = sp.edit();

Expand Down

0 comments on commit 00f7169

Please sign in to comment.