We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c3eff7 commit 066ac59Copy full SHA for 066ac59
2 files changed
src/Classes/CalcBreakdownControl.lua
@@ -704,10 +704,11 @@ function CalcBreakdownClass:Draw(viewPort)
704
else
705
SetDrawColor(0.33, 0.66, 0.33)
706
end
707
- DrawImage(nil, x, y, width, 2)
708
- DrawImage(nil, x, y + height - 2, width, 2)
709
- DrawImage(nil, x, y, 2, height)
710
- DrawImage(nil, x + width - 2, y, 2, height)
+ local borderThickness = 2
+ DrawImage(nil, x, y, width, borderThickness)
+ DrawImage(nil, x, y + height - borderThickness, width, borderThickness)
+ DrawImage(nil, x, y, borderThickness, height)
711
+ DrawImage(nil, x + width - borderThickness, y, borderThickness, height)
712
SetDrawLayer(nil, 10)
713
self:DrawControls(viewPort)
714
-- Draw the sections
src/Classes/Tooltip.lua
@@ -11,7 +11,7 @@ local s_gmatch = string.gmatch
11
12
-- Constants
13
14
-local BORDER_WIDTH = 3
+local BORDER_WIDTH = 1
15
local H_PAD = 12
16
local V_PAD = 10
17
-- spell-checker: disable
0 commit comments