Skip to content

Commit 824701d

Browse files
committed
Fix property incorrectly set as read only
1 parent da1b37f commit 824701d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/Orts.Simulation/Common/Scripting/EuropeanTrainControlSystem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public class ETCSStatus
125125
/// <summary>
126126
/// Legacy variable. Please use TextMessageAreaShown instead
127127
/// </summary>
128-
public bool ShowTextMessageArea => TextMessageAreaShown;
128+
public bool ShowTextMessageArea { get { return TextMessageAreaShown; } set { TextMessageAreaShown = true; } }
129129
/// <summary>
130130
/// List of text messages to be displayed in text area. Do not rely on the order, as the DMI will reorder the list.
131131
/// </summary>

0 commit comments

Comments
 (0)