aboutsummaryrefslogtreecommitdiff
path: root/advtrains/textures/advtrains_dtrack_rail.png
diff options
context:
space:
mode:
authororwell96 <orwell@bleipb.de>2018-08-12 17:23:52 +0200
committerorwell96 <orwell@bleipb.de>2018-08-12 17:23:52 +0200
commit224d5cbfd3a0403e40eef6604f418bc65e26423d (patch)
treeab00f84427775b8103eb0caff3766d95b35430d5 /advtrains/textures/advtrains_dtrack_rail.png
parenta92ecbc26a14a193f103fe6a626eae000fe9b949 (diff)
download --with this program; if not, write to the Free Software Foundation, Inc., --51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -------------------------------------------------------------------------------- local function delete_mod_formspec(dialogdata) dialogdata.mod = modmgr.global_mods:get_list()[dialogdata.selected] local retval = "size[12.4,5,true]" .. "field[1.75,1;10,3;;" generated by cgit v1.2.3 (git 2.39.1) at 2025-02-09 18:56:26 +0000 span class="hl esc">\"?", dialogdata.mod.name) .. ";]".. "button[4,4.2;1,0.5;dlg_delete_mod_confirm;" .. fgettext("Yes") .. "]" .. "button[6.5,4.2;3,0.5;dlg_delete_mod_cancel;" .. fgettext("No of course not!") .. "]" return retval end -------------------------------------------------------------------------------- local function delete_mod_buttonhandler(this, fields) if fields["dlg_delete_mod_confirm"] ~= nil then if this.data.mod.path ~= nil and this.data.mod.path ~= "" and this.data.mod.path ~= core.get_modpath() then if not core.delete_dir(this.data.mod.path) then gamedata.errormessage = fgettext("Modmgr: failed to delete \"$1\"", this.data.mod.path) end modmgr.refresh_globals() else gamedata.errormessage = fgettext("Modmgr: invalid modpath \"$1\"", this.data.mod.path) end this:delete() return true end if fields["dlg_delete_mod_cancel"] then this:delete() return true end return false end -------------------------------------------------------------------------------- function create_delete_mod_dlg(selected_index) local retval = dialog_create("dlg_delete_mod", delete_mod_formspec, delete_mod_buttonhandler, nil) retval.data.selected = selected_index return retval end