diff options
author | fvogel <fvogelnew1@free.fr> | 2015-10-03 20:00:57 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2015-10-03 20:00:57 (GMT) |
commit | d842640197e344a68b6bb601ec39f74c1d071be0 (patch) | |
tree | 6c070e363070b764416146e1de45299d9a5392d3 /library | |
parent | 232769312e8b6d7b1fa4bb3674b8afe660b8b59f (diff) | |
download | tk-d842640197e344a68b6bb601ec39f74c1d071be0.zip tk-d842640197e344a68b6bb601ec39f74c1d071be0.tar.gz tk-d842640197e344a68b6bb601ec39f74c1d071be0.tar.bz2 |
Fixed bug [1669632fff] case (iv) - autoseparator was missing on <Control-backslash>
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 1321334..396ce1b 100644 --- a/library/text.tcl +++ b/library/text.tcl @@ -244,6 +244,9 @@ bind Text <Control-slash> { } bind Text <Control-backslash> { %W tag remove sel 1.0 end + if {[%W cget -autoseparators]} { + %W edit separator + } } bind Text <<Cut>> { tk_textCut %W |