Merge pull request #1686 from Gymnasiast/disable-tutorial-button

Disable tutorial button
This commit is contained in:
Duncan 2015-07-26 17:00:56 +01:00
commit 6f0ad6a916
1 changed files with 2 additions and 1 deletions

View File

@ -99,7 +99,8 @@ void window_title_menu_open()
WF_STICK_TO_BACK | WF_TRANSPARENT
);
window->widgets = window_title_menu_widgets;
window->enabled_widgets |= (8 | 4 | 2 | 1);
window->enabled_widgets |= (8 | 2 | 1);
window->disabled_widgets |= (4); // Disable tutorial button
window_init_scroll_widgets(window);
}