diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-01-14 15:57:59 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-01-14 15:57:59 (GMT) |
commit | e50ff59782eb62c098fa31ce44b5ef22696d23ba (patch) | |
tree | da7364467d81702a33baeda8458765145bfb8727 /library/scale.tcl | |
parent | 74c1da3513a051544b27bfde2a52525f55d648a2 (diff) | |
download | tk-e50ff59782eb62c098fa31ce44b5ef22696d23ba.zip tk-e50ff59782eb62c098fa31ce44b5ef22696d23ba.tar.gz tk-e50ff59782eb62c098fa31ce44b5ef22696d23ba.tar.bz2 |
Consistancy in Key/Button bindings: Use "<Button-1>" in stead of "<1>", "Key" in stead of "KeyPress" and "Button" in stead of "ButtonPress". Also eliminate unnessary "Any" and "Key" modifiers.
Diffstat (limited to 'library/scale.tcl')
-rw-r--r-- | library/scale.tcl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/scale.tcl b/library/scale.tcl index fb9b81b..cc0de20 100644 --- a/library/scale.tcl +++ b/library/scale.tcl @@ -34,7 +34,7 @@ bind Scale <Leave> { %W configure -state normal } } -bind Scale <1> { +bind Scale <Button-1> { tk::ScaleButtonDown %W %x %y } bind Scale <B1-Motion> { @@ -47,7 +47,7 @@ bind Scale <ButtonRelease-1> { tk::ScaleEndDrag %W tk::ScaleActivate %W %x %y } -bind Scale <2> { +bind Scale <Button-2> { tk::ScaleButton2Down %W %x %y } bind Scale <B2-Motion> { @@ -62,13 +62,13 @@ bind Scale <ButtonRelease-2> { } if {[tk windowingsystem] eq "win32"} { # On Windows do the same with button 3, as that is the right mouse button - bind Scale <3> [bind Scale <2>] + bind Scale <Button-3> [bind Scale <Button-2>] bind Scale <B3-Motion> [bind Scale <B2-Motion>] bind Scale <B3-Leave> [bind Scale <B2-Leave>] bind Scale <B3-Enter> [bind Scale <B2-Enter>] bind Scale <ButtonRelease-3> [bind Scale <ButtonRelease-2>] } -bind Scale <Control-1> { +bind Scale <Control-Button-1> { tk::ScaleControlPress %W %x %y } bind Scale <<PrevLine>> { |