forked from Mirrorlandia_minetest/minetest
Hide "Autosave Screen Size" on Android
This commit is contained in:
parent
1f39948bc3
commit
21323ef1ff
@ -160,7 +160,7 @@ local function formspec(tabview, name, tabdata)
|
|||||||
.. getSettingIndex.NodeHighlighting() .. "]" ..
|
.. getSettingIndex.NodeHighlighting() .. "]" ..
|
||||||
"dropdown[0.25,3.6;3.5;dd_leaves_style;" .. dd_options.leaves[1] .. ";"
|
"dropdown[0.25,3.6;3.5;dd_leaves_style;" .. dd_options.leaves[1] .. ";"
|
||||||
.. getSettingIndex.Leaves() .. "]" ..
|
.. getSettingIndex.Leaves() .. "]" ..
|
||||||
"box[4,0;3.75,4.5;#999999]" ..
|
"box[4,0;3.75,4.9;#999999]" ..
|
||||||
"label[4.25,0.1;" .. fgettext("Texturing:") .. "]" ..
|
"label[4.25,0.1;" .. fgettext("Texturing:") .. "]" ..
|
||||||
"dropdown[4.25,0.55;3.5;dd_filters;" .. dd_options.filters[1] .. ";"
|
"dropdown[4.25,0.55;3.5;dd_filters;" .. dd_options.filters[1] .. ";"
|
||||||
.. getSettingIndex.Filter() .. "]" ..
|
.. getSettingIndex.Filter() .. "]" ..
|
||||||
@ -169,9 +169,6 @@ local function formspec(tabview, name, tabdata)
|
|||||||
"label[4.25,2.15;" .. fgettext("Antialiasing:") .. "]" ..
|
"label[4.25,2.15;" .. fgettext("Antialiasing:") .. "]" ..
|
||||||
"dropdown[4.25,2.6;3.5;dd_antialiasing;" .. dd_options.antialiasing[1] .. ";"
|
"dropdown[4.25,2.6;3.5;dd_antialiasing;" .. dd_options.antialiasing[1] .. ";"
|
||||||
.. getSettingIndex.Antialiasing() .. "]" ..
|
.. getSettingIndex.Antialiasing() .. "]" ..
|
||||||
"label[4.25,3.45;" .. fgettext("Screen:") .. "]" ..
|
|
||||||
"checkbox[4.25,3.6;cb_autosave_screensize;" .. fgettext("Autosave Screen Size") .. ";"
|
|
||||||
.. dump(core.settings:get_bool("autosave_screensize")) .. "]" ..
|
|
||||||
"box[8,0;3.75,4.5;#999999]"
|
"box[8,0;3.75,4.5;#999999]"
|
||||||
|
|
||||||
local video_driver = core.settings:get("video_driver")
|
local video_driver = core.settings:get("video_driver")
|
||||||
@ -203,10 +200,15 @@ local function formspec(tabview, name, tabdata)
|
|||||||
|
|
||||||
if core.settings:get("touchscreen_threshold") ~= nil then
|
if core.settings:get("touchscreen_threshold") ~= nil then
|
||||||
tab_string = tab_string ..
|
tab_string = tab_string ..
|
||||||
"label[4.3,4.2;" .. fgettext("Touchthreshold: (px)") .. "]" ..
|
"label[4.25,3.5;" .. fgettext("Touch threshold (px):") .. "]" ..
|
||||||
"dropdown[4.25,4.65;3.5;dd_touchthreshold;0,10,20,30,40,50;" ..
|
"dropdown[4.25,3.95;3.5;dd_touchthreshold;0,10,20,30,40,50;" ..
|
||||||
((tonumber(core.settings:get("touchscreen_threshold")) / 10) + 1) ..
|
((tonumber(core.settings:get("touchscreen_threshold")) / 10) + 1) ..
|
||||||
"]box[4.0,4.5;3.75,1.0;#999999]"
|
"]"
|
||||||
|
else
|
||||||
|
tab_string = tab_string ..
|
||||||
|
"label[4.25,3.65;" .. fgettext("Screen:") .. "]" ..
|
||||||
|
"checkbox[4.25,3.9;cb_autosave_screensize;" .. fgettext("Autosave Screen Size") .. ";"
|
||||||
|
.. dump(core.settings:get_bool("autosave_screensize")) .. "]"
|
||||||
end
|
end
|
||||||
|
|
||||||
if shaders_enabled then
|
if shaders_enabled then
|
||||||
|
Loading…
Reference in New Issue
Block a user