diff --git a/ChangeLog b/ChangeLog index 37e0a1ffd..d82e2a455 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-02-16 Richard Frith-Macdonald + + * Source/NSMenu.m: Upon creation of bWindow, set its level to + pop up window level, so right click brings up the menu above + panels etc. + Sun Feb 16 04:13:46 2003 Nicola Pero * Source/NSSplitView.m ([-mouseDown:]): Fixed calling delegate diff --git a/Source/NSMenu.m b/Source/NSMenu.m index 78003bb4b..0c83b21ce 100644 --- a/Source/NSMenu.m +++ b/Source/NSMenu.m @@ -225,6 +225,7 @@ static NSNotificationCenter *nc; // Create the windows that will display the menu. _aWindow = [self _createWindow]; _bWindow = [self _createWindow]; + [_bWindow setLevel: NSPopUpMenuWindowLevel]; // Create a NSMenuView to draw our menu items. _view = [[NSMenuView alloc] initWithFrame: NSMakeRect(0,0,50,50)];