Skip to content

Commit

Permalink
Made the party list moving boxes more obvious
Browse files Browse the repository at this point in the history
  • Loading branch information
tirem committed Mar 18, 2023
1 parent 2b46d00 commit 8168862
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions XivParty/uiPartyList.lua
Original file line number Diff line number Diff line change
Expand Up @@ -151,11 +151,15 @@ function uiPartyList:drawDragConfig()
imgui.SetNextWindowPos({self.posX, self.posY});
self.isUiLocked = true;
end
imgui.PushStyleColor(ImGuiCol_WindowBg, {1,1,0,1});
imgui.PushStyleVar(ImGuiStyleVar_WindowBorderSize, 3);
imgui.Begin(("XivParty: Move Party %s"):fmt(self.partyIndex), true, bit.bor(ImGuiWindowFlags_NoSavedSettings, ImGuiWindowFlags_NoDecoration))
local posX, posY = imgui.GetWindowPos();
self:pos(posX, posY)
setUiPosition(posX, posY, self.partyIndex)
imgui.End();
imgui.PopStyleColor(1);
imgui.PopStyleVar(1);
end


Expand Down
2 changes: 1 addition & 1 deletion XivParty/xivparty.lua
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ local function setSetupEnabled(enabled)
else
print(chat.header(addon.name)..'Config opened (/xp or /xivparty)')
print(chat.header(addon.name)..'Retype the command to save and close')
print(chat.header(addon.name)..'To move party lists click and drag the grey boxes')
print(chat.header(addon.name)..'To move party lists click and drag the yellow boxes')
end
end

Expand Down

0 comments on commit 8168862

Please sign in to comment.