From 8908258499b281266b1e7809e40e7de52b11fa74 Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Sun, 16 Mar 2025 13:08:44 +0100 Subject: [PATCH] Small Input fix --- src/elements/Input.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/elements/Input.lua b/src/elements/Input.lua index 2286746..fc87024 100644 --- a/src/elements/Input.lua +++ b/src/elements/Input.lua @@ -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")