Skip to content

Commit

Permalink
Fix text being editable in lists (Epix-Incorporated#1425)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiserandaxl authored Mar 5, 2024
1 parent efdd627 commit 99ff7e0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions MainModule/Client/UI/Default/Window.rbxmx
Original file line number Diff line number Diff line change
Expand Up @@ -1768,6 +1768,10 @@ return function(data, env)
TextEditable = false;
ClearTextOnFocus = false;
})

label:GetPropertyChangedSignal("Text"):Connect(function()
label.Text = ` {text}`
end)
else
label = create(onClick and "TextButton" or "TextLabel",{
Text = ` {text}`;
Expand Down

0 comments on commit 99ff7e0

Please sign in to comment.