aboutsummaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-07-09 16:31:33 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2007-07-09 16:31:33 +0000
commit68521fbfc630715aaba0c1d685021b6ed077b6b5 (patch)
treee57d7b491c2f81869af03b0764337523371ec617 /packages
parentf87391acc6d5041b86c7b6b22b283bf6a51caea9 (diff)
switch to Mac OS X standard key mapping for Cmd-T (fontpanel instead of 'send message' box)
svn path=/trunk/; revision=7927
Diffstat (limited to 'packages')
-rw-r--r--packages/patches/cmd-t-opens-fontpanel-0.41.0-test03.patch27
1 files changed, 27 insertions, 0 deletions
diff --git a/packages/patches/cmd-t-opens-fontpanel-0.41.0-test03.patch b/packages/patches/cmd-t-opens-fontpanel-0.41.0-test03.patch
new file mode 100644
index 00000000..a280732f
--- /dev/null
+++ b/packages/patches/cmd-t-opens-fontpanel-0.41.0-test03.patch
@@ -0,0 +1,27 @@
+Index: u_main.tk
+===================================================================
+RCS file: /cvsroot/pure-data/pd/src/u_main.tk,v
+retrieving revision 1.17.2.16
+diff -u -w -r1.17.2.16 u_main.tk
+--- u_main.tk 8 Jul 2007 21:56:30 -0000 1.17.2.16
++++ u_main.tk 9 Jul 2007 16:29:16 -0000
+@@ -1618,6 +1619,7 @@
+ }
+
+ proc pdtk_canvas_ctrlkey {name key shift} {
++ global pd_nt
+ # first get rid of ".c" suffix; we'll refer to the toplevel instead
+ set topname [string trimright $name .c]
+ # puts stderr [concat ctrl-key $key $topname]
+@@ -1658,7 +1659,11 @@
+ if {$key == "v" || $key == "V"} {menu_paste $topname}
+ if {$key == "d" || $key == "D"} {menu_duplicate $topname}
+ if {$key == "a" || $key == "A"} {menu_selectall $topname}
++ if {$pd_nt == 2} { # by default, Cmd-T opens the font panel on Mac OS X
++ if {$key == "t" || $key == "T"} {menu_font $topname}
++ } else {
+ if {$key == "t" || $key == "T"} {menu_texteditor $topname}
++ }
+ if {$key == "f" || $key == "F"} {menu_findobject $topname}
+ if {$key == "g" || $key == "G"} {menu_findagain $topname}
+ }