Skip to content

Commit

Permalink
Remove 'Reset singleplayer world' button from full menu on Android (#…
Browse files Browse the repository at this point in the history
…8017)

Make button appearence dependent on menustyle not platform.
Button only functions with simple menu.
  • Loading branch information
paramat committed Dec 23, 2018
1 parent 67049eb commit 9080d7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion builtin/mainmenu/tab_settings.lua
Expand Up @@ -220,7 +220,8 @@ local function formspec(tabview, name, tabdata)
fgettext("Shaders (unavailable)")) .. "]"
end

if PLATFORM == "Android" then
if core.settings:get("main_menu_style") == "simple" then
-- 'Reset singleplayer world' only functions with simple menu
tab_string = tab_string ..
"button[8,4.75;3.95,1;btn_reset_singleplayer;"
.. fgettext("Reset singleplayer world") .. "]"
Expand Down

0 comments on commit 9080d7c

Please sign in to comment.