Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/Classes/SkillListControl.lua
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ local SkillListClass = newClass("SkillListControl", "ListControl", function(self
skillsTab:SetDisplayGroup()
skillsTab:AddUndoState()
skillsTab.build.buildFlag = true
skillsTab.proxyGroupsDirty = true
skillsTab:UpdateProxyGroups()
self.selIndex = nil
self.selValue = nil
end)
Expand All @@ -62,6 +64,8 @@ local SkillListClass = newClass("SkillListControl", "ListControl", function(self
skillsTab:SetDisplayGroup(newGroup)
skillsTab:AddUndoState()
skillsTab.build.buildFlag = true
skillsTab.proxyGroupsDirty = true
skillsTab:UpdateProxyGroups()
return skillsTab.gemSlots[1].nameSpec
end)
for k, x in pairs(slot_map) do
Expand Down Expand Up @@ -173,6 +177,8 @@ function SkillListClass:OnSelDelete(index, socketGroup)
updateActiveSocketGroupIndex()
self.skillsTab:AddUndoState()
self.skillsTab.build.buildFlag = true
self.skillsTab.proxyGroupsDirty = true
self.skillsTab:UpdateProxyGroups()
self.selValue = nil
else
main:OpenConfirmPopup("Delete Socket Group", "Are you sure you want to delete '"..socketGroup.displayLabel.."'?", "Delete", function()
Expand All @@ -184,6 +190,8 @@ function SkillListClass:OnSelDelete(index, socketGroup)
updateActiveSocketGroupIndex()
self.skillsTab:AddUndoState()
self.skillsTab.build.buildFlag = true
self.skillsTab.proxyGroupsDirty = true
self.skillsTab:UpdateProxyGroups()
self.selValue = nil
end)
end
Expand Down
Loading
Loading