4 Commits

Author SHA1 Message Date
Dusk-92 53dfa8ec5a Keep party frames hidden when raid cluster is collapsed 2026-09-11 17:07:13 +02:00
Dusk-92 6b37727178 Remove accidental noop file 2026-09-11 17:06:48 +02:00
Dusk-92 99be5ffc71 noop 2026-09-11 17:06:38 +02:00
Dusk-92 02b1ce13d2 Tighten minimap stats spacing
Slightly overlap the framerate and latency borders with the MiniMap Clock for a tighter visual grouping without changing ticker behavior.
2026-09-08 11:38:34 +02:00
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -98,8 +98,8 @@ module.enable = function(self)
latencyFrame:ClearAllPoints()
if _G.MinimapClock then
fpsFrame:SetPoint("RIGHT", _G.MinimapClock, "LEFT", -2, 0)
latencyFrame:SetPoint("LEFT", _G.MinimapClock, "RIGHT", 2, 0)
fpsFrame:SetPoint("RIGHT", _G.MinimapClock, "LEFT", 2, 0)
latencyFrame:SetPoint("LEFT", _G.MinimapClock, "RIGHT", -2, 0)
else
fpsFrame:SetPoint("BOTTOM", Minimap, "BOTTOM", -28, -25)
latencyFrame:SetPoint("BOTTOM", Minimap, "BOTTOM", 28, -25)
+1 -1
View File
@@ -41,7 +41,7 @@ module.enable = function(self)
end
local function UpdatePartyFrames()
local active = raid:IsShown() and raid.cluster and raid.cluster:IsShown()
local active = raid:IsShown()
SetPartyFramesHidden(active and true or false)
end