diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-10-21 16:04:20 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2020-10-21 16:04:20 (GMT) |
commit | 60185fa162e07e3ffb2351e26b1946570633487a (patch) | |
tree | 5604c1f6df6ec3460b9a634d928ccfb58d559bb0 /library/scale.tcl | |
parent | 4ff12b5ba2d676f45815ea946d632c63c925083d (diff) | |
parent | 6c408f9635216a7ef5b45abb0084de2b648bd77a (diff) | |
download | tk-60185fa162e07e3ffb2351e26b1946570633487a.zip tk-60185fa162e07e3ffb2351e26b1946570633487a.tar.gz tk-60185fa162e07e3ffb2351e26b1946570633487a.tar.bz2 |
Merge trunk
Diffstat (limited to 'library/scale.tcl')
-rw-r--r-- | library/scale.tcl | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/library/scale.tcl b/library/scale.tcl index cc0de20..130c491 100644 --- a/library/scale.tcl +++ b/library/scale.tcl @@ -60,14 +60,6 @@ bind Scale <ButtonRelease-2> { tk::ScaleEndDrag %W tk::ScaleActivate %W %x %y } -if {[tk windowingsystem] eq "win32"} { - # On Windows do the same with button 3, as that is the right mouse button - 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-Button-1> { tk::ScaleControlPress %W %x %y } |