Skip to content

Commit 8474a57

Browse files
committedAug 18, 2019
Change one touch mode change default from enabled to disabled
1 parent 062ab21 commit 8474a57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎scidOnTheGo/src/main/java/org/scid/android/ScidAndroidActivity.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -590,7 +590,7 @@ public boolean onTouch(View v, MotionEvent event) {
590590
@Override
591591
public boolean onTouch(View v, MotionEvent e) {
592592
if ((e.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_UP
593-
&& preferences.getBoolean("oneTouchModeChange", true)) {
593+
&& preferences.getBoolean("oneTouchModeChange", false)) {
594594
float p = (e.getX() - v.getLeft()) / v.getWidth(); // p in [0,1]
595595
int mode = (int)(3*p-0.01); // mode in {0,1,2}
596596
setMode(mode);

0 commit comments

Comments
 (0)
Failed to load comments.