chiark / gitweb /
Revert "gui: keypress for position-unknown movfeat normalises rather than reverses"
authorIan Jackson <ian@liberator.relativity.greenend.org.uk>
Sat, 8 Jan 2011 21:29:48 +0000 (21:29 +0000)
committerIan Jackson <ian@liberator.relativity.greenend.org.uk>
Sat, 8 Jan 2011 21:29:48 +0000 (21:29 +0000)
Actually, this change did the opposite of what was intended.

This reverts commit a2e566e03eb861afc530369ae9cfc9e38a882771.

hostside/gui

index 1d0a97671d445507b6fddb1c787e864afb792ce2..50ad7ab25b4e464f4902a36e8404b49f87b3afb7 100755 (executable)
@@ -210,8 +210,8 @@ proc movpos-invoked {mid ctrlr} {
     global movfeatcommand
     movpos-button-gvars $mid
     switch -exact $posn {
-       1 { set new_posn 0 }
-       default { set new_posn 1 }
+       0 { set new_posn 1 }
+       default { set new_posn 0 }
     }
     scmd routinecmd $ctrlr "$movfeatcommand $seg $feat $new_posn"
 }