world code placeholder to match the code struct

This commit is contained in:
minjaesong
2023-09-08 19:32:41 +09:00
parent d5a8d098bb
commit 81ebf7a8ef
3 changed files with 3 additions and 3 deletions

View File

@@ -107,7 +107,7 @@ class UINewWorld(val remoCon: UIRemoCon) : UICanvas() {
private val codeInput = UIItemTextLineInput(this,
inputX, drawY + sizeSelY, inputWidth,
{ "AAAA BB CCCCC DDDDD EEEEE FFFFF" }, InputLenCap(31, InputLenCap.CharLenUnit.CODEPOINTS)).also {
{ "AAAAA BBBBB CCCCC DDDDD EEEEE" }, InputLenCap(31, InputLenCap.CharLenUnit.CODEPOINTS)).also {
// reset importReturnCode if the text input has changed
it.onKeyDown = { _ ->

View File

@@ -299,7 +299,7 @@ class UIWorldPortalListing(val full: UIWorldPortal) : UICanvas() {
}
}
}
private var threadFired = false
override fun show() {

View File

@@ -40,7 +40,7 @@ class UIWorldPortalUseInvitation(val full: UIWorldPortal) : UICanvas() {
private val codeInput = UIItemTextLineInput(this,
drawX + width - inputWidth + 5, drawY + sizeSelY, inputWidth,
{ "AAAA BB CCCCC DDDDD EEEEE FFFFF" }, InputLenCap(31, InputLenCap.CharLenUnit.CODEPOINTS)
{ "AAAAA BBBBB CCCCC DDDDD EEEEE" }, InputLenCap(31, InputLenCap.CharLenUnit.CODEPOINTS)
).also {
// reset importReturnCode if the text input has changed
it.onKeyDown = { _ ->