From: Ingo Ruhnke Date: Sun, 25 May 2008 16:42:19 +0000 (+0000) Subject: Reposition menu on fullscreen toggle X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=6dfb72a982a52129cb2b55cd41222914a819ecb4;p=supertux.git Reposition menu on fullscreen toggle SVN-Revision: 5518 --- diff --git a/src/options_menu.cpp b/src/options_menu.cpp index 6a5b3649e..644028ceb 100644 --- a/src/options_menu.cpp +++ b/src/options_menu.cpp @@ -279,7 +279,8 @@ OptionsMenu::menu_action(MenuItem* item) case MNID_FULLSCREEN: if(config->use_fullscreen != options_menu->is_toggled(MNID_FULLSCREEN)) { config->use_fullscreen = !config->use_fullscreen; - init_video(); + init_video(); // FIXME: Should call apply_config instead + Menu::recalc_pos(); config->save(); } break;