forked from Mirrorlandia_minetest/minetest
Use fixed size for builtin menus on non-android platforms
This commit is contained in:
parent
49f84b76bc
commit
4d744cf87a
@ -139,7 +139,11 @@ local function init_globals()
|
|||||||
tv_main:add(tab_credits)
|
tv_main:add(tab_credits)
|
||||||
|
|
||||||
tv_main:set_global_event_handler(main_event_handler)
|
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
|
if not (PLATFORM == "Android") then
|
||||||
tv_main:set_tab(core.setting_get("maintab_LAST"))
|
tv_main:set_tab(core.setting_get("maintab_LAST"))
|
||||||
|
@ -1043,7 +1043,11 @@ static inline void create_formspec_menu(GUIFormSpecMenu **cur_formspec,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef __ANDROID__
|
||||||
#define SIZE_TAG "size[11,5.5]"
|
#define SIZE_TAG "size[11,5.5]"
|
||||||
|
#else
|
||||||
|
#define SIZE_TAG "size[11,5.5,true]" // Fixed size on desktop
|
||||||
|
#endif
|
||||||
|
|
||||||
static void show_chat_menu(GUIFormSpecMenu **cur_formspec,
|
static void show_chat_menu(GUIFormSpecMenu **cur_formspec,
|
||||||
InventoryManager *invmgr, IGameDef *gamedef,
|
InventoryManager *invmgr, IGameDef *gamedef,
|
||||||
|
Loading…
Reference in New Issue
Block a user