Skip to content
This repository was archived by the owner on Jan 27, 2026. It is now read-only.
Open
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
5 changes: 4 additions & 1 deletion MY_Focus/src/MY_Focus.UI.lua
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,10 @@ function D.CreateList(frame)
end
if X.UI.IS_GLASSMORPHISM then
hItem:Lookup('Handle_L/Handle_Compass/Image_Player'):SetSize(35, 35)
hItem:Lookup('Handle_L/Handle_Compass/Image_Player'):SetRelPos(2.5, -0.8)
-- hItem:Lookup('Handle_L/Handle_Compass/Image_Player'):SetRelPos(2.5, -0.8)
local fScaleX = frame.fScaleX or 1
local fScaleY = frame.fScaleY or 1
hItem:Lookup('Handle_L/Handle_Compass/Image_Player'):SetRelPos(2.5 * fScaleX, -0.8 * fScaleY)
hItem:FormatAllItemPos()
end
hItem:Hide()
Expand Down