From b24ecb460ba4a58d3ec7dbe01669eccf93eb5856 Mon Sep 17 00:00:00 2001 From: ben Date: Mon, 17 Mar 2003 19:00:36 +0000 Subject: [PATCH] When running on a system with Aqua menu layout, delete the separator line above "Quit" as well as "Quit" itself. git-svn-id: svn://svn.tartarus.org/sgt/putty@2951 cda61777-01e9-0310-a592-d414129be87e --- mac/mac.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/mac/mac.c b/mac/mac.c index ed73070a..91fa2fc2 100644 --- a/mac/mac.c +++ b/mac/mac.c @@ -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 * All rights reserved. @@ -194,8 +194,11 @@ static void mac_startup(void) { fatalbox("Unable to create menu bar."); SetMenuBar(menuBar); AppendResMenu(GetMenuHandle(mApple), 'DRVR'); - if (mac_gestalts.menuattr & gestaltMenuMgrAquaLayoutMask) + if (mac_gestalts.menuattr & gestaltMenuMgrAquaLayoutMask) { DeleteMenuItem(GetMenuHandle(mFile), iQuit); + /* Also delete the separator above the Quit item. */ + DeleteMenuItem(GetMenuHandle(mFile), iQuit - 1); + } mac_adjustmenus(); DrawMenuBar(); InitCursor(); -- 2.11.0