From: Shawn O. Pearce Date: Mon, 28 May 2007 15:34:47 +0000 (-0400) Subject: git-gui: Disable tearoff menus on Windows, Mac OS X X-Git-Tag: v1.5.3-rc0~44^2~15 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f60fdd0eaaaf92882f3e6aeb19bb85482fab6d39;p=git.git git-gui: Disable tearoff menus on Windows, Mac OS X The Windows and Mac OS X platforms do not generally use the tearoff menu feature found on traditional X11 based systems. On Windows the Tk engine does support the feature, but it really is out of place and just confuses people who aren't used to working on a UNIX system. On Mac OS X its not supported for the root menu bar and its submenus, as it doesn't fit into the overall platform UI model. Signed-off-by: Shawn O. Pearce --- diff --git a/git-gui.sh b/git-gui.sh index a5f31dc39..d640b143f 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -1221,6 +1221,10 @@ foreach class {Button Checkbutton Entry Label } unset class +if {[is_Windows] || [is_MacOSX]} { + option add *Menu.tearOff 0 +} + if {[is_MacOSX]} { set M1B M1 set M1T Cmd