Let main menu scale (non-Android)

This fixes main menu not fitting for 800x600 (and lower resolutions) on PC builds
This commit is contained in:
Zeno- 2015-03-30 00:33:07 +10:00 committed by Nils Dagsson Moskopp
parent ca83a3ab72
commit efeec55ab8
Signed by: erle
GPG Key ID: A3BC671C35191080
1 changed files with 2 additions and 5 deletions

View File

@ -139,11 +139,8 @@ local function init_globals()
tv_main:add(tab_credits)
tv_main:set_global_event_handler(main_event_handler)
if PLATFORM ~= "Android" then
tv_main:set_fixed_size(true)
else
tv_main:set_fixed_size(false)
end
tv_main:set_fixed_size(false)
if not (PLATFORM == "Android") then
tv_main:set_tab(core.setting_get("maintab_LAST"))