diff options
-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 } |