chiark / gitweb /
gui: keypress for position-unknown movfeat normalises rather than reverses
authorIan Jackson <ian@liberator.relativity.greenend.org.uk>
Wed, 5 Jan 2011 00:18:24 +0000 (00:18 +0000)
committerIan Jackson <ian@liberator.relativity.greenend.org.uk>
Wed, 5 Jan 2011 00:18:24 +0000 (00:18 +0000)
hostside/gui

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