summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2015-10-03 20:00:57 (GMT)
committerfvogel <fvogelnew1@free.fr>2015-10-03 20:00:57 (GMT)
commitd842640197e344a68b6bb601ec39f74c1d071be0 (patch)
tree6c070e363070b764416146e1de45299d9a5392d3 /library
parent232769312e8b6d7b1fa4bb3674b8afe660b8b59f (diff)
downloadtk-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.tcl3
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