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 | |
parent | 777c00215141227226c13f2c5a8e1f60a80a6ace (diff) | |
download | tk-eca4ae02608704c0675aa3e031435fcd1edd39b9.zip tk-eca4ae02608704c0675aa3e031435fcd1edd39b9.tar.gz tk-eca4ae02608704c0675aa3e031435fcd1edd39b9.tar.bz2 |
[Bug 3600251]: Inappropriate replacement of Mac binding.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | library/text.tcl | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2013-01-10 Jan Nijtmans <nijtmans@users.sf.net> + + * library/text.tcl: [Bug 3600251]: Inappropriate replacement of Mac + binding. + 2012-12-11 Don Porter <dgp@users.sourceforge.net> *** 8.6.0 TAGGED FOR RELEASE *** 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 } |