diff options
author | fvogel <fvogel@noemail.net> | 2015-10-03 19:32:12 (GMT) |
---|---|---|
committer | fvogel <fvogel@noemail.net> | 2015-10-03 19:32:12 (GMT) |
commit | d28cab2cb94c9397f1d917d216d50fc512c67819 (patch) | |
tree | 3b9674cfd3a76ce7d09656a416ced7cdfe416133 /library | |
parent | 95e6aacbf53f23bd2952dbc0c1c98e07ba2db895 (diff) | |
download | tk-d28cab2cb94c9397f1d917d216d50fc512c67819.zip tk-d28cab2cb94c9397f1d917d216d50fc512c67819.tar.gz tk-d28cab2cb94c9397f1d917d216d50fc512c67819.tar.bz2 |
Fixed bug [1669632fff] case (i) - autoseparator was missing on <Control-1>
FossilOrigin-Name: f2d25ac4fd5534326ef1d76a556f0b9868e045a3
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 |