mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-02 16:38:41 +00:00
Use fixed size for builtin menus on non-android platforms
This commit is contained in:
parent
4208fdfd22
commit
bb603ff18e
2 changed files with 9 additions and 1 deletions
|
@ -139,7 +139,11 @@ local function init_globals()
|
|||
tv_main:add(tab_credits)
|
||||
|
||||
tv_main:set_global_event_handler(main_event_handler)
|
||||
tv_main:set_fixed_size(false)
|
||||
if PLATFORM ~= "Android" then
|
||||
tv_main:set_fixed_size(true)
|
||||
else
|
||||
tv_main:set_fixed_size(false)
|
||||
end
|
||||
|
||||
if not (PLATFORM == "Android") then
|
||||
tv_main:set_tab(core.setting_get("maintab_LAST"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue