Skip to content

Commit

Permalink
tweak texcoord to get rid of border
Browse files Browse the repository at this point in the history
  • Loading branch information
eltreum0 committed Oct 10, 2023
1 parent c1717bb commit 6d6b603
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ElvUI_EltreumUI/Modules/Misc/LFGList.lua
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,12 @@ function ElvUI_EltreumUI:DungeonRoleIcons()
end
end
else
iconTable[className] = _G.CLASS_ICON_TCOORDS[className]
--iconTable[className] = _G.CLASS_ICON_TCOORDS[className]
--get rid of the border
iconTable[className][1] = _G.CLASS_ICON_TCOORDS[className][1] + 0.02
iconTable[className][2] = _G.CLASS_ICON_TCOORDS[className][2] - 0.02
iconTable[className][3] = _G.CLASS_ICON_TCOORDS[className][3] + 0.02
iconTable[className][4] = _G.CLASS_ICON_TCOORDS[className][4] - 0.02
end
end
end
Expand Down

0 comments on commit 6d6b603

Please sign in to comment.