diff options
author | treectrl <treectrl> | 2005-05-28 21:52:36 (GMT) |
---|---|---|
committer | treectrl <treectrl> | 2005-05-28 21:52:36 (GMT) |
commit | bf37fe596e45b87d8bfa35c6fb43b4eb5e360578 (patch) | |
tree | 6d10a942313cd2b611fa83082976a79d3ce8aa73 /demos | |
parent | 5cff85d02fbb5b68c214cc4d676c068255e62b52 (diff) | |
download | tktreectrl-bf37fe596e45b87d8bfa35c6fb43b4eb5e360578.zip tktreectrl-bf37fe596e45b87d8bfa35c6fb43b4eb5e360578.tar.gz tktreectrl-bf37fe596e45b87d8bfa35c6fb43b4eb5e360578.tar.bz2 |
Change <Command-ButtonPress-1> binding on Aqua to <Control-ButtonPress-1>, since Command should be used for discontinuous selection on OSX.
Diffstat (limited to 'demos')
-rw-r--r-- | demos/demo.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/demo.tcl b/demos/demo.tcl index ed23514..ab64c43 100644 --- a/demos/demo.tcl +++ b/demos/demo.tcl @@ -502,7 +502,7 @@ proc TreePlusScrollbarsInAFrame {f h v} { ShowPopup %W %x %y %X %Y } if {[tk windowingsystem] eq "aqua"} { - bind $f.t <Command-ButtonPress-1> { + bind $f.t <Control-ButtonPress-1> { ShowPopup %W %x %y %X %Y } } |