Skip to content

Commit

Permalink
fix: disable touchpad support by default for now
Browse files Browse the repository at this point in the history
libc++abi: terminating due to uncaught exception of type std::__ndk1::system_error: thread::join failed: Invalid argument
  • Loading branch information
Xtr126 committed Feb 21, 2024
1 parent 37e2b3f commit 43a357d
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 @@ -102,7 +102,7 @@ private void loadSharedPrefs() {
swipeDelayMs = sharedPref.getInt("swipe_delay_ms", 0);
dpadRadiusMultiplier = sharedPref.getFloat("dpad_radius", 1f);

touchpadInputMode = sharedPref.getString("touchpad_input_mode", TOUCHPAD_RELATIVE);
touchpadInputMode = sharedPref.getString("touchpad_input_mode", TOUCHPAD_DISABLED);
}

public void applySharedPrefs() {
Expand Down

0 comments on commit 43a357d

Please sign in to comment.