diff options
Diffstat (limited to 'Mac/Python/macglue.c')
-rw-r--r-- | Mac/Python/macglue.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index 6321421..52bc225 100644 --- a/Mac/Python/macglue.c +++ b/Mac/Python/macglue.c @@ -162,7 +162,7 @@ int PyMac_ConsoleIsDead; /* ** Sioux menu bar, saved early so we can restore it */ -static Handle sioux_mbar; +static MenuBarHandle sioux_mbar; /* ** Some stuff for our GetDirectory and PromptGetFile routines @@ -784,11 +784,19 @@ PyMac_InitMenuBar() void PyMac_RestoreMenuBar() { +#if 0 + /* This doesn't seem to work anymore? Or only for Carbon? */ + MenuBarHandle curmenubar; + + curmenubar = GetMenuBar(); if ( sioux_mbar ) { SetMenuBar(sioux_mbar); DrawMenuBar(); - } else + } else { PyMac_InitMenuBar(); + DrawMenuBar(); + } +#endif } |