summaryrefslogtreecommitdiffstats
path: root/library/ttk
diff options
context:
space:
mode:
authornijtmans@users.sourceforge.net <jan.nijtmans>2012-08-10 10:20:50 (GMT)
committernijtmans@users.sourceforge.net <jan.nijtmans>2012-08-10 10:20:50 (GMT)
commit7f91f0c4267745e15d6e8a618e7f1644562ceadb (patch)
tree6270ad7be676303bb66e0b80674b1aba64a0b72b /library/ttk
parent8d7ac108d7cd591e1a0923757509c62cfeb1a2f3 (diff)
downloadtk-7f91f0c4267745e15d6e8a618e7f1644562ceadb.zip
tk-7f91f0c4267745e15d6e8a618e7f1644562ceadb.tar.gz
tk-7f91f0c4267745e15d6e8a618e7f1644562ceadb.tar.bz2
define two more virtual bindings, and correct various Mac
bindings according to Apple OSX documentation. Doc updated as well
Diffstat (limited to 'library/ttk')
-rw-r--r--library/ttk/entry.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/ttk/entry.tcl b/library/ttk/entry.tcl
index dc835e9..22c4115 100644
--- a/library/ttk/entry.tcl
+++ b/library/ttk/entry.tcl
@@ -107,8 +107,8 @@ bind TEntry <<SelectNextWord>> { ttk::entry::Extend %W nextword }
bind TEntry <<SelectLineStart>> { ttk::entry::Extend %W home }
bind TEntry <<SelectLineEnd>> { ttk::entry::Extend %W end }
-bind TEntry <Control-Key-slash> { %W selection range 0 end }
-bind TEntry <Control-Key-backslash> { %W selection clear }
+bind TEntry <<SelectAll>> { %W selection range 0 end }
+bind TEntry <<SelectNone>> { %W selection clear }
bind TEntry <<TraverseIn>> { %W selection range 0 end; %W icursor end }