Fix FSAA dropdown option reset after changing another dropdown option

master
jeanpatrick.guerrero@gmail.com 2015-07-25 12:40:01 +02:00 committed by est31
parent fa1096ec49
commit ffd0ef16c4
1 changed files with 15 additions and 13 deletions

View File

@ -109,8 +109,7 @@ local function antialiasing_fname_to_name(fname)
return antialiasing[2][i] return antialiasing[2][i]
end end
end end
return 0
return "0"
end end
local function dlg_confirm_reset_formspec(data) local function dlg_confirm_reset_formspec(data)
@ -418,8 +417,11 @@ local function handle_settings_buttons(this, fields, tabname, tabdata)
core.setting_set("anisotropic_filter", "true") core.setting_set("anisotropic_filter", "true")
ddhandled = true ddhandled = true
end end
if fields["dd_antialiasing"] then
core.setting_set("fsaa", core.setting_set("fsaa",
antialiasing_fname_to_name(fields["dd_antialiasing"])) antialiasing_fname_to_name(fields["dd_antialiasing"]))
ddhandled = true
end
return ddhandled return ddhandled
end end