summaryrefslogtreecommitdiffstats
path: root/library/ttk
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-01-13 16:02:44 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-01-13 16:02:44 (GMT)
commitbd63da3ee660ddb6ea5be7fc5e1fbe49a5429bb6 (patch)
tree16292755781d627c896da50e714dd55e1371263b /library/ttk
parent5676280816e3d3355ce864626bb7a328138648d8 (diff)
parentde64eb806aa2c07e2a6661c850b23e39fe1701ff (diff)
downloadtk-bd63da3ee660ddb6ea5be7fc5e1fbe49a5429bb6.zip
tk-bd63da3ee660ddb6ea5be7fc5e1fbe49a5429bb6.tar.gz
tk-bd63da3ee660ddb6ea5be7fc5e1fbe49a5429bb6.tar.bz2
[Bug 3600390]: tk_strictMotif not tested for.
Now all key-bindings for Control-a,b,e,f,n,p (and its shift variant) respect tk_strictMotif.
Diffstat (limited to 'library/ttk')
-rw-r--r--library/ttk/entry.tcl3
1 files changed, 0 insertions, 3 deletions
diff --git a/library/ttk/entry.tcl b/library/ttk/entry.tcl
index f5ba19e..7d9c9ef 100644
--- a/library/ttk/entry.tcl
+++ b/library/ttk/entry.tcl
@@ -141,9 +141,6 @@ bind TEntry <<NextLine>> {# nothing}
## Additional emacs-like bindings:
#
-bind TEntry <Control-Key-b> { ttk::entry::Move %W prevchar }
-bind TEntry <Control-Key-d> { ttk::entry::Delete %W }
-bind TEntry <Control-Key-f> { ttk::entry::Move %W nextchar }
bind TEntry <Control-Key-h> { ttk::entry::Backspace %W }
bind TEntry <Control-Key-k> { %W delete insert end }