fix: targeted voucher code not working

This commit is contained in:
minjaesong
2025-02-15 23:56:53 +09:00
parent ad68e04b83
commit 37d6d3004b
4 changed files with 26 additions and 10 deletions

View File

@@ -24,16 +24,18 @@ class UIRedeemCodeMachine : UICanvas(
override var width = Toolkit.drawWidth
override var height = App.scr.height
private val codeCols = 12
val title = UIItemTextLabel(this, { "Enter the Code" },
(Toolkit.drawWidth - UIItemRedeemCodeArea.estimateWidth(14)) / 2,
(Toolkit.drawWidth - UIItemRedeemCodeArea.estimateWidth(codeCols)) / 2,
App.scr.halfh - UIItemRedeemCodeArea.estimateHeight(4) - 48 - 48,
UIItemRedeemCodeArea.estimateWidth(14)
UIItemRedeemCodeArea.estimateWidth(codeCols)
)
val inputPanel = UIItemRedeemCodeArea(this,
(Toolkit.drawWidth - UIItemRedeemCodeArea.estimateWidth(14)) / 2,
(Toolkit.drawWidth - UIItemRedeemCodeArea.estimateWidth(codeCols)) / 2,
App.scr.halfh - UIItemRedeemCodeArea.estimateHeight(4) - 48,
14, 4)
codeCols, 4)
init {
addUIitem(title)