Skip to content

Commit 36ff189

Browse files
committed
Fix broken special characters
Introduced in 8388488
1 parent aa3b801 commit 36ff189

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

[admin]/admin/client/colorpicker/colorpicker.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function colorPicker.create(id, start, title)
4444
cp.gui.svmap = guiCreateStaticImage(16, 32, 256, 256, "client/colorpicker/blank.png", false, cp.gui.window)
4545
cp.gui.hbar = guiCreateStaticImage(288, 32, 32, 256, "client/colorpicker/blank.png", false, cp.gui.window)
4646
cp.gui.blank = guiCreateStaticImage(336, 32, 64, 64, "client/colorpicker/blank.png", false, cp.gui.window)
47-
cp.gui.edith = guiCreateLabel(338, 106, 64, 20, "H: °", false, cp.gui.window)
47+
cp.gui.edith = guiCreateLabel(338, 106, 64, 20, "H: 0°", false, cp.gui.window)
4848
cp.gui.edits = guiCreateLabel(338, 126, 64, 20, "S: 100%", false, cp.gui.window)
4949
cp.gui.editv = guiCreateLabel(338, 146, 64, 20, "V: 100%", false, cp.gui.window)
5050
cp.gui.editr = guiCreateLabel(338, 171, 64, 20, "R: 255", false, cp.gui.window)
@@ -138,7 +138,7 @@ function colorPicker:updateColor()
138138
self.color.current = tocolor(self.color.r, self.color.g, self.color.b,255)
139139
self.color.huecurrent = tocolor(hsv2rgb(self.color.h, 1, 1))
140140
self.color.hex = string.format("#%02X%02X%02X", self.color.r, self.color.g, self.color.b)
141-
guiSetText(self.gui.edith, "H: "..tostring(math.round(self.color.h*360)).."°")
141+
guiSetText(self.gui.edith, "H: "..tostring(math.round(self.color.h*360)).."°")
142142
guiSetText(self.gui.edits, "S: "..tostring(math.round(self.color.s*100)).."%")
143143
guiSetText(self.gui.editv, "V: "..tostring(math.round(self.color.v*100)).."%")
144144
guiSetText(self.gui.editr, "R: "..tostring(self.color.r))

[editor]/editor_main/client/collisions.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
--[[
22
Collection of functions to detect if a line hits a shape
33
4-
Special thanks to Rayco "XeNMaX" Hernandez García for his BIG help.
4+
Special thanks to Rayco "XeNMaX" Hernandez García for his BIG help.
55
]]
66

77
local ZERO_TOLERANCE = 0.000001

[gameplay]/webbrowser/WebBrowserGUI.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ function WebBrowserGUI:constructor()
1313
self.m_ForwardButton = GuiButton(42, 25, 32, 32, ">", false, self.m_Window)
1414
self.m_ForwardButton:setEnabled(false)
1515
self.m_EditAddress = GuiEdit(77, 25, sizeX - 192, 32, "Please enter an address", false, self.m_Window)
16-
self.m_DevButton = GuiButton(sizeX - 110, 25, 32, 32, "✎", false, self.m_Window)
17-
self.m_LoadButton = GuiButton(sizeX - 75, 25, 32, 32, "➽", false, self.m_Window)
18-
self.m_ButtonClose = GuiButton(sizeX - 38, 25, 24, 24, "✖", false, self.m_Window)
16+
self.m_DevButton = GuiButton(sizeX - 110, 25, 32, 32, "", false, self.m_Window)
17+
self.m_LoadButton = GuiButton(sizeX - 75, 25, 32, 32, "", false, self.m_Window)
18+
self.m_ButtonClose = GuiButton(sizeX - 38, 25, 24, 24, "", false, self.m_Window)
1919
self.m_ButtonClose:setProperty("NormalTextColour", "FFFF2929")
2020
self.m_ButtonClose:setProperty("HoverTextColour", "FF990909")
2121
self.m_ButtonClose:setFont("default-bold-small")

0 commit comments

Comments
 (0)