From c204d3e1e2a19f8b7b7704fca30b6b12ac63cadb Mon Sep 17 00:00:00 2001 From: Charles Dang Date: Fri, 24 Mar 2017 11:43:34 +1100 Subject: [PATCH] Don't show GUI2 help by default (hide it behind --new-widgets switch) Looks like it might be awhile before we get more progress on this, so I'm hiding it by default for now. --- src/gui/dialogs/title_screen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/dialogs/title_screen.cpp b/src/gui/dialogs/title_screen.cpp index b9c33a5a5780..c115c43844fd 100644 --- a/src/gui/dialogs/title_screen.cpp +++ b/src/gui/dialogs/title_screen.cpp @@ -298,9 +298,9 @@ void title_screen::pre_show(window& win) // Help // register_button(win, "help", hotkey::HOTKEY_HELP, [](window& w) { - //if(gui2::new_widgets) { + if(gui2::new_widgets) { gui2::dialogs::help_browser::display(w.video()); - //} + } help::help_manager help_manager(&game_config_manager::get()->game_config()); help::show_help(w.video());