diff options
author | fvogel <fvogelnew1@free.fr> | 2015-10-03 19:32:12 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2015-10-03 19:32:12 (GMT) |
commit | 7095493993b76ba96a52d01db7ab4366732907b7 (patch) | |
tree | 3b9674cfd3a76ce7d09656a416ced7cdfe416133 /library | |
parent | 47f460b458330c928c83b91eda60b76b3092d711 (diff) | |
download | tk-7095493993b76ba96a52d01db7ab4366732907b7.zip tk-7095493993b76ba96a52d01db7ab4366732907b7.tar.gz tk-7095493993b76ba96a52d01db7ab4366732907b7.tar.bz2 |
Fixed bug [1669632fff] case (i) - autoseparator was missing on <Control-1>
Diffstat (limited to 'library')
-rw-r--r-- | library/text.tcl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/library/text.tcl b/library/text.tcl index 0e43e61..1321334 100644 --- a/library/text.tcl +++ b/library/text.tcl @@ -85,6 +85,9 @@ bind Text <ButtonRelease-1> { } bind Text <Control-1> { %W mark set insert @%x,%y + if {[%W cget -autoseparators]} { + %W edit separator + } } bind Text <Left> { tk::TextSetCursor %W insert-1displayindices |