diff options
author | Paul Ouellette <oue.paul18@gmail.com> | 2019-02-18 16:04:43 -0500 |
---|---|---|
committer | Paramat <paramat@users.noreply.github.com> | 2019-02-18 21:04:43 +0000 |
commit | 0ad96cc73f5498cf4ffe85afe1478066acfd377a (patch) | |
tree | 3abb4d684f57cf543b141d65c8be56d1f40b5782 /builtin/mainmenu/tab_local.lua | |
parent | 57517628f03632587f68b5e8a1e6c641be07e629 (diff) | |
download | minetest-0ad96cc73f5498cf4ffe85afe1478066acfd377a.tar.gz minetest-0ad96cc73f5498cf4ffe85afe1478066acfd377a.tar.bz2 minetest-0ad96cc73f5498cf4ffe85afe1478066acfd377a.zip |
Update gamebar on tab enter (#8192)
Diffstat (limited to 'builtin/mainmenu/tab_local.lua')
-rw-r--r-- | builtin/mainmenu/tab_local.lua | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/builtin/mainmenu/tab_local.lua b/builtin/mainmenu/tab_local.lua index 915258b48..15ef96dc8 100644 --- a/builtin/mainmenu/tab_local.lua +++ b/builtin/mainmenu/tab_local.lua @@ -294,13 +294,6 @@ end local on_change if enable_gamebar then function on_change(type, old_tab, new_tab) - local buttonbar = ui.find_by_name("game_button_bar") - - if ( buttonbar == nil ) then - singleplayer_refresh_gamebar() - buttonbar = ui.find_by_name("game_button_bar") - end - if (type == "ENTER") then local game = current_game() @@ -309,10 +302,15 @@ if enable_gamebar then core.set_topleft_text(game.name) mm_texture.update("singleplayer",game) end - buttonbar:show() + + singleplayer_refresh_gamebar() + ui.find_by_name("game_button_bar"):show() else menudata.worldlist:set_filtercriteria(nil) - buttonbar:hide() + local gamebar = ui.find_by_name("game_button_bar") + if gamebar then + gamebar:hide() + end core.set_topleft_text("") mm_texture.update(new_tab,nil) end |