Skip to content

Commit fffad05

Browse files
committed
Made strings copyable. (#115)
1 parent 76c7530 commit fffad05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ReClass.NET/Nodes/BaseTextPtrNode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public Size DrawText(ViewInfo view, int x, int y, string type)
4747
}
4848

4949
x = AddText(view, x, y, view.Settings.TextColor, HotSpot.NoneId, "= '");
50-
x = AddText(view, x, y, view.Settings.TextColor, HotSpot.NoneId, text);
50+
x = AddText(view, x, y, view.Settings.TextColor, HotSpot.ReadOnlyId, text);
5151
x = AddText(view, x, y, view.Settings.TextColor, HotSpot.NoneId, "'") + view.Font.Width;
5252

5353
x = AddComment(view, x, y);

0 commit comments

Comments
 (0)