Skip to content

Commit 7a7ea55

Browse files
committed
feature: added isActive to textbox fields to rerender when changed
1 parent c1bd7ea commit 7a7ea55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/engine/UI/TextBox.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ module TextBoxModule
172172
@debug("setting textbox property $(s) to: $(x)")
173173
try
174174
setfield!(this, s, x)
175-
if s == :text || s == :alpha
175+
if s == :text || s == :alpha || s == :isActive
176176
if length(x) == 0
177177
setfield!(this, s, " ")# prevents segfault when text is empty
178178
end

0 commit comments

Comments
 (0)