diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-10 14:43:47 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-01-10 14:43:47 (GMT) |
commit | eca4ae02608704c0675aa3e031435fcd1edd39b9 (patch) | |
tree | f739618c8634567d5972ad8be87057e28719f076 /library | |
parent | 777c00215141227226c13f2c5a8e1f60a80a6ace (diff) | |
download | tk-eca4ae02608704c0675aa3e031435fcd1edd39b9.zip tk-eca4ae02608704c0675aa3e031435fcd1edd39b9.tar.gz tk-eca4ae02608704c0675aa3e031435fcd1edd39b9.tar.bz2 |
[Bug 3600251]: Inappropriate replacement of Mac binding.
Diffstat (limited to 'library')
-rw-r--r-- | library/text.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/text.tcl b/library/text.tcl index e59a86e..279e2d9 100644 --- a/library/text.tcl +++ b/library/text.tcl @@ -360,7 +360,7 @@ bind Text <Meta-Delete> { # Macintosh only bindings: if {[tk windowingsystem] eq "aqua"} { -bind Text <<Paste>> { +bind Text <Control-v> { tk::TextScrollPages %W 1 } |