aboutsummaryrefslogtreecommitdiff
path: root/remove_menubar_from_patch_windows-plugin.tcl
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-11-30 21:18:47 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-11-30 21:18:47 +0000
commite58f6b3236f51c06e53c407a46d41f5e898c3b3c (patch)
tree0f591563a53ca78869729ec022f76de692306885 /remove_menubar_from_patch_windows-plugin.tcl
added the simple plugins from the pd-gui-rewrite/0.43/startup branchsvn2git-root
svn path=/trunk/scripts/guiplugins/simple_examples/; revision=14540
Diffstat (limited to 'remove_menubar_from_patch_windows-plugin.tcl')
-rw-r--r--remove_menubar_from_patch_windows-plugin.tcl7
1 files changed, 7 insertions, 0 deletions
diff --git a/remove_menubar_from_patch_windows-plugin.tcl b/remove_menubar_from_patch_windows-plugin.tcl
new file mode 100644
index 0000000..124d216
--- /dev/null
+++ b/remove_menubar_from_patch_windows-plugin.tcl
@@ -0,0 +1,7 @@
+# this scriptlet removes the menubars from all canvas windows. You could also
+# create your own custom menu and add it to the canvas windows.
+
+# on Mac OS X, no windows have menubars, so no need to remove for 'aqua'
+if {$::windowingsystem ne "aqua"} {
+ set ::canvas_menubar ""
+}