Skip to content

Commit 01231e1

Browse files
author
Chris Jakeman
committed
Labels more consistent
1 parent dd59134 commit 01231e1

File tree

3 files changed

+70
-73
lines changed

3 files changed

+70
-73
lines changed

Source/Menu/Options.Designer.cs

Lines changed: 66 additions & 66 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Source/Menu/Options.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -187,10 +187,10 @@ public OptionsForm(UserSettings settings, UpdateManager updateManager, bool init
187187
numericAdhesionMovingAverageFilterSize.Value = Settings.AdhesionMovingAverageFilterSize;
188188
checkBreakCouplers.Checked = Settings.BreakCouplers;
189189
checkCurveSpeedDependent.Checked = Settings.CurveSpeedDependent;
190-
checkHotStart.Checked = Settings.HotStart;
190+
checkBoilerPreheated.Checked = Settings.HotStart;
191191
checkForcedRedAtStationStops.Checked = !Settings.NoForcedRedAtStationStops;
192192
checkDoorsAITrains.Checked = Settings.OpenDoorsInAITrains;
193-
checkDieselEngineStart.Checked = !Settings.NoDieselEngineStart; // Inverted as "EngineStart" is better UI than "NoEngineStart"
193+
checkDieselEnginesStarted.Checked = !Settings.NoDieselEngineStart; // Inverted as "EngineStart" is better UI than "NoEngineStart"
194194

195195
// Keyboard tab
196196
InitializeKeyboardSettings();
@@ -461,10 +461,10 @@ void buttonOK_Click(object sender, EventArgs e)
461461
Settings.AdhesionMovingAverageFilterSize = (int)numericAdhesionMovingAverageFilterSize.Value;
462462
Settings.BreakCouplers = checkBreakCouplers.Checked;
463463
Settings.CurveSpeedDependent = checkCurveSpeedDependent.Checked;
464-
Settings.HotStart = checkHotStart.Checked;
464+
Settings.HotStart = checkBoilerPreheated.Checked;
465465
Settings.NoForcedRedAtStationStops = !checkForcedRedAtStationStops.Checked;
466466
Settings.OpenDoorsInAITrains = checkDoorsAITrains.Checked;
467-
Settings.NoDieselEngineStart = !checkDieselEngineStart.Checked; // Inverted as "EngineStart" is better UI than "NoEngineStart"
467+
Settings.NoDieselEngineStart = !checkDieselEnginesStarted.Checked; // Inverted as "EngineStart" is better UI than "NoEngineStart"
468468

469469
// Keyboard tab
470470
// These are edited live.

Source/Menu/Options.resx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,4 @@
123123
<metadata name="bindingSourceContent.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
124124
<value>114, 17</value>
125125
</metadata>
126-
<metadata name="toolTip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
127-
<value>17, 17</value>
128-
</metadata>
129126
</root>

0 commit comments

Comments
 (0)