Skip to content

Commit b11369d

Browse files
committed
Remove unnecessary subtraction
1 parent 2a57f6e commit b11369d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/custom_chat/client/vgui/chat_channel_button.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ end
5454
function PANEL:PaintOver( w, h )
5555
if self.notificationCount > 0 then
5656
local size = 14
57-
local x = w - size - 2
58-
local y = h - size - 2
57+
local x = w - size
58+
local y = h - size
5959

6060
local label = self.notificationCount < 99 and self.notificationCount or "99+"
6161

0 commit comments

Comments
 (0)