Committed two lines from John to help fix the menus a bit.
authorRichard Rauch <rkr@olib.org>
Sat, 11 Oct 2003 11:13:23 +0000 (11:13 +0000)
committerRichard Rauch <rkr@olib.org>
Sat, 11 Oct 2003 11:13:23 +0000 (11:13 +0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@222 7f0cb862-5218-0410-a997-914c9d46530a

src/freeglut_menu.c

index 1194908..a0b544c 100644 (file)
@@ -638,7 +638,7 @@ void fgDeactivateMenu( SFG_Window *window )
       /*
        * Is that an active submenu by any case?
        */
-      if ( ( menuEntry->SubMenu != NULL ) && menuEntry->SubMenu->IsActive )
+      if ( menuEntry->SubMenu != NULL )
         fgDeactivateSubMenu ( menuEntry ) ;
     }
 
@@ -673,7 +673,7 @@ void fgDeactivateSubMenu( SFG_MenuEntry *menuEntry )
       /*
        * Is that an active submenu by any case?
        */
-      if ( ( subMenuIter->SubMenu != NULL ) && subMenuIter->SubMenu->IsActive )
+      if ( subMenuIter->SubMenu != NULL )
         fgDeactivateSubMenu ( subMenuIter ) ;
     }