Skip to content

Commit

Permalink
fix: set default type to POINTER_OVERLAY
Browse files Browse the repository at this point in the history
  • Loading branch information
Xtr126 committed Aug 4, 2024
1 parent c7ef61d commit 67294e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/xtr/keymapper/keymap/KeymapConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ private void loadSharedPrefs() throws ClassCastException {
dpadRadiusMultiplier = sharedPref.getFloat("dpad_radius", 1f);

touchpadInputMode = sharedPref.getInt("touchpad_input_mode", TOUCHPAD_DISABLED);
pointerMode = sharedPref.getInt("pointer_mode", POINTER_COMBINED);
pointerMode = sharedPref.getInt("pointer_mode", POINTER_OVERLAY);
}

public void applySharedPrefs() {
Expand Down

0 comments on commit 67294e7

Please sign in to comment.