ecere/gui/Window: Fixed Form Designer window system icons showing up on IDE menu...
authorJerome St-Louis <jerome@ecere.com>
Sat, 15 Feb 2014 22:06:33 +0000 (14:06 -0800)
committerJerome St-Louis <jerome@ecere.com>
Sat, 15 Feb 2014 22:06:33 +0000 (14:06 -0800)
ecere/src/gui/Window.ec

index 110fec7..6828800 100644 (file)
@@ -2233,6 +2233,7 @@ private:
    Window GetParentMenuBar()
    {
       Window menuBarParent;
+      if(formDesigner) return null;
       for(menuBarParent = this ? parent : null; menuBarParent; menuBarParent = menuBarParent.parent)
       {
          if(menuBarParent.menuBar) return menuBarParent.menuBar;