fix: update order popup background color to gray
This commit is contained in:
@@ -479,10 +479,10 @@ local function buildMainPage()
|
|||||||
-- Order quantity popup (full-screen overlay; starts disabled)
|
-- Order quantity popup (full-screen overlay; starts disabled)
|
||||||
orderPopup = UI.Window {
|
orderPopup = UI.Window {
|
||||||
x = 1, y = 1, ex = -1, ey = -1,
|
x = 1, y = 1, ex = -1, ey = -1,
|
||||||
backgroundColor = colors.black,
|
backgroundColor = colors.gray,
|
||||||
enable = function() end, -- toggled manually
|
enable = function() end, -- toggled manually
|
||||||
draw = function(self)
|
draw = function(self)
|
||||||
self:clear(colors.black)
|
self:clear(colors.gray)
|
||||||
self._zones = {}
|
self._zones = {}
|
||||||
|
|
||||||
local dw = math.min(self.width - 2, 30)
|
local dw = math.min(self.width - 2, 30)
|
||||||
|
|||||||
Reference in New Issue
Block a user