diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-08-10 11:28:09 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-08-10 11:28:09 (GMT) |
commit | b883e880976a068be12cf29c379b97be348ea79c (patch) | |
tree | 058e10db403e77b5641b299ae236b7d4399f366c /library/listbox.tcl | |
parent | 4170dadb2c17a28bfbe04fcdba16d8e1038616df (diff) | |
download | tk-b883e880976a068be12cf29c379b97be348ea79c.zip tk-b883e880976a068be12cf29c379b97be348ea79c.tar.gz tk-b883e880976a068be12cf29c379b97be348ea79c.tar.bz2 |
Shift-Control -> Control-Shift, for consisancy everywhere
Diffstat (limited to 'library/listbox.tcl')
-rw-r--r-- | library/listbox.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/listbox.tcl b/library/listbox.tcl index 99047f4..c7dd32e 100644 --- a/library/listbox.tcl +++ b/library/listbox.tcl @@ -120,7 +120,7 @@ bind Listbox <Control-Home> { %W selection set 0 event generate %W <<ListboxSelect>> } -bind Listbox <Shift-Control-Home> { +bind Listbox <Control-Shift-Home> { tk::ListboxDataExtend %W 0 } bind Listbox <Control-End> { @@ -130,7 +130,7 @@ bind Listbox <Control-End> { %W selection set end event generate %W <<ListboxSelect>> } -bind Listbox <Shift-Control-End> { +bind Listbox <Control-Shift-End> { tk::ListboxDataExtend %W [%W index end] } bind Listbox <<Copy>> { |