Skip to content

Commit

Permalink
Allow the MM menu on the main menu
Browse files Browse the repository at this point in the history
  • Loading branch information
sarbian committed Sep 17, 2014
1 parent 17be046 commit 4ca1972
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion moduleManager.cs
Expand Up @@ -155,7 +155,9 @@ public void OnGUI()
}
}

if (showUI && HighLogic.LoadedScene == GameScenes.SPACECENTER && !inRnDCenter)
if (showUI &&
(HighLogic.LoadedScene == GameScenes.SPACECENTER || HighLogic.LoadedScene == GameScenes.MAINMENU) &&
!inRnDCenter)
{
windowPos = GUILayout.Window(
GetType().FullName.GetHashCode(),
Expand Down

0 comments on commit 4ca1972

Please sign in to comment.