Index: NSMenuView.m
===================================================================
RCS file: /cvsroot/gnustep/gnustep/core/gui/Source/NSMenuView.m,v
retrieving revision 1.76
diff -u -r1.76 NSMenuView.m
--- NSMenuView.m        20 Mar 2003 12:13:54 -0000      1.76
+++ NSMenuView.m        21 Mar 2003 06:19:46 -0000
@@ -921,7 +921,10 @@
        float      grays[] = {NSDarkGray, NSDarkGray};
 
        // Draw the dark gray upper left lines.
-       NSDrawTiledRects(rect, rect, sides, grays, 2);
+        if (![_menu _ownedByPopUp])
+          {
+           NSDrawTiledRects(rect, rect, sides, grays, 2);
+         }
 
        // Draw the menu cells.
        for (i = 0; i < howMany; i++)

