From: curt Date: Wed, 19 Sep 2001 22:26:01 +0000 (+0000) Subject: Turn hud off by default for ADA fdm. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b991f8fd96c016752f71dd13b6a07ec4d0af74a2;p=flightgear.git Turn hud off by default for ADA fdm. --- diff --git a/src/GUI/gui.cxx b/src/GUI/gui.cxx index 58db573ce..d3df0a87c 100644 --- a/src/GUI/gui.cxx +++ b/src/GUI/gui.cxx @@ -1044,5 +1044,9 @@ void guiInit() mainMenuBar-> close (); // Set up menu bar toggle gui_menu_on = ~0; + + if (fgGetString("/sim/flight-model") == "ada") { + guiToggleMenu(); // Menu off by default + } }