mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-25 01:02:24 +00:00
When running on a system with Aqua menu layout, delete the separator line
above "Quit" as well as "Quit" itself. [originally from svn r2951]
This commit is contained in:
parent
13c7bf5dd5
commit
93198194fb
@ -1,4 +1,4 @@
|
|||||||
/* $Id: mac.c,v 1.54 2003/03/06 23:44:47 ben Exp $ */
|
/* $Id: mac.c,v 1.55 2003/03/17 19:00:36 ben Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1999, 2003 Ben Harris
|
* Copyright (c) 1999, 2003 Ben Harris
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
@ -194,8 +194,11 @@ static void mac_startup(void) {
|
|||||||
fatalbox("Unable to create menu bar.");
|
fatalbox("Unable to create menu bar.");
|
||||||
SetMenuBar(menuBar);
|
SetMenuBar(menuBar);
|
||||||
AppendResMenu(GetMenuHandle(mApple), 'DRVR');
|
AppendResMenu(GetMenuHandle(mApple), 'DRVR');
|
||||||
if (mac_gestalts.menuattr & gestaltMenuMgrAquaLayoutMask)
|
if (mac_gestalts.menuattr & gestaltMenuMgrAquaLayoutMask) {
|
||||||
DeleteMenuItem(GetMenuHandle(mFile), iQuit);
|
DeleteMenuItem(GetMenuHandle(mFile), iQuit);
|
||||||
|
/* Also delete the separator above the Quit item. */
|
||||||
|
DeleteMenuItem(GetMenuHandle(mFile), iQuit - 1);
|
||||||
|
}
|
||||||
mac_adjustmenus();
|
mac_adjustmenus();
|
||||||
DrawMenuBar();
|
DrawMenuBar();
|
||||||
InitCursor();
|
InitCursor();
|
||||||
|
Loading…
Reference in New Issue
Block a user