Small Input fix

This commit is contained in:
Robert Jelic
2025-03-16 13:08:44 +01:00
parent 749040cad1
commit 8908258499

View File

@@ -29,7 +29,7 @@ Input.defineProperty(Input, "pattern", {default = nil, type = "string"})
---@property cursorColor number nil Color of the cursor
Input.defineProperty(Input, "cursorColor", {default = nil, type = "number"})
---@property replaceChar string nil Character to replace the input with (for password fields)
Input.defineProperty(Input, "replaceChar", {default = nil, type = "string"})
Input.defineProperty(Input, "replaceChar", {default = nil, type = "string", canTriggerRender = true})
Input.defineEvent(Input, "mouse_click")
Input.defineEvent(Input, "key")