Skip to content

Commit

Permalink
Fix modpack rename dialog selecting the wrong mod
Browse files Browse the repository at this point in the history
  • Loading branch information
numberZero authored and rubenwardy committed Feb 3, 2019
1 parent 339341b commit 7c23976
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
9 changes: 3 additions & 6 deletions builtin/mainmenu/dlg_rename_modpack.lua
Expand Up @@ -18,9 +18,6 @@
--------------------------------------------------------------------------------

local function rename_modpack_formspec(dialogdata)

dialogdata.mod = pkgmgr.global_mods:get_list()[dialogdata.selected]

local retval =
"size[11.5,4.5,true]" ..
"field[2.5,2;7,0.5;te_modpack_name;".. fgettext("Rename Modpack:") .. ";" ..
Expand All @@ -38,7 +35,7 @@ local function rename_modpack_buttonhandler(this, fields)
if fields["dlg_rename_modpack_confirm"] ~= nil then
local oldpath = core.get_modpath() .. DIR_DELIM .. this.data.mod.name
local targetpath = core.get_modpath() .. DIR_DELIM .. fields["te_modpack_name"]
core.copy_dir(oldpath,targetpath,false)
os.rename(oldpath, targetpath)
pkgmgr.refresh_globals()
pkgmgr.selected_mod = pkgmgr.global_mods:get_current_index(
pkgmgr.global_mods:raw_index_by_uid(fields["te_modpack_name"]))
Expand All @@ -56,12 +53,12 @@ local function rename_modpack_buttonhandler(this, fields)
end

--------------------------------------------------------------------------------
function create_rename_modpack_dlg(selected_index)
function create_rename_modpack_dlg(modpack)

local retval = dialog_create("dlg_delete_mod",
rename_modpack_formspec,
rename_modpack_buttonhandler,
nil)
retval.data.selected = selected_index
retval.data.mod = modpack
return retval
end
4 changes: 3 additions & 1 deletion builtin/mainmenu/tab_content.lua
Expand Up @@ -164,10 +164,12 @@ local function handle_buttons(tabview, fields, tabname, tabdata)
end

if fields["btn_mod_mgr_rename_modpack"] ~= nil then
local dlg_renamemp = create_rename_modpack_dlg(tabdata.selected_pkg)
local mod = packages:get_list()[tabdata.selected_pkg]
local dlg_renamemp = create_rename_modpack_dlg(mod)
dlg_renamemp:set_parent(tabview)
tabview:hide()
dlg_renamemp:show()
packages = nil
return true
end

Expand Down

0 comments on commit 7c23976

Please sign in to comment.