fix: update order popup background color to gray

This commit is contained in:
MayaTheShy
2026-03-22 20:42:08 -04:00
parent aaaf25350c
commit a6bf84d6b8

View File

@@ -479,10 +479,10 @@ local function buildMainPage()
-- Order quantity popup (full-screen overlay; starts disabled)
orderPopup = UI.Window {
x = 1, y = 1, ex = -1, ey = -1,
backgroundColor = colors.black,
backgroundColor = colors.gray,
enable = function() end, -- toggled manually
draw = function(self)
self:clear(colors.black)
self:clear(colors.gray)
self._zones = {}
local dw = math.min(self.width - 2, 30)