Skip to content

Commit fe419b1

Browse files
authored
fix: unable to type into textbox (#2445)
1 parent 12e0130 commit fe419b1

File tree

1 file changed

+1
-1
lines changed
  • Intersect.Client.Framework/Gwen/Control

1 file changed

+1
-1
lines changed

Intersect.Client.Framework/Gwen/Control/Label.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public override void Invalidate()
103103
public virtual string Text
104104
{
105105
[MethodImpl(MethodImplOptions.AggressiveInlining)]
106-
get => _text;
106+
get => _text ?? string.Empty;
107107
[MethodImpl(MethodImplOptions.AggressiveInlining)]
108108
set
109109
{

0 commit comments

Comments
 (0)