From 28a362ff552df19c55010dfb2250228b650bec40 Mon Sep 17 00:00:00 2001 From: Lamont Granquist Date: Wed, 8 Jul 2026 15:10:39 -0700 Subject: [PATCH] =?UTF-8?q?Standardize=20use=20of=20unicode=20=CE=94=20cha?= =?UTF-8?q?racter?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use: U+0394 : GREEK CAPITAL LETTER DELTA Instead of: U+2206 : INCREMENT {Laplace operator; forward difference; symmetric difference (in set theory)} --- MechJeb2/MechJebModuleAscentPSGSettingsMenu.cs | 2 +- MechJeb2/MechJebModuleFlightRecorderGraph.cs | 4 ++-- MechJeb2/MechJebStageStatsHelper.cs | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/MechJeb2/MechJebModuleAscentPSGSettingsMenu.cs b/MechJeb2/MechJebModuleAscentPSGSettingsMenu.cs index 536924901..9e7a4117f 100644 --- a/MechJeb2/MechJebModuleAscentPSGSettingsMenu.cs +++ b/MechJeb2/MechJebModuleAscentPSGSettingsMenu.cs @@ -81,7 +81,7 @@ protected override void WindowGUI(int windowID) } GUILayout.BeginVertical(GUI.skin.box); - GuiUtils.SimpleTextBox("Min ∆v: ", _ascentSettings.MinDeltaV, "m/s", 30); + GuiUtils.SimpleTextBox("Min ΔV: ", _ascentSettings.MinDeltaV, "m/s", 30); GuiUtils.SimpleTextBox("Last Stage: ", _ascentSettings.LastStage); GuiUtils.ToggledTextBox(ref _ascentSettings.FixedStagesFlag, "Fixed Burn Stages: ", _ascentSettings.FixedStagesInternal); GuiUtils.ToggledTextBox(ref _ascentSettings.UnguidedStagesFlag, "Unguided Stages: ", _ascentSettings.UnguidedStagesInternal); diff --git a/MechJeb2/MechJebModuleFlightRecorderGraph.cs b/MechJeb2/MechJebModuleFlightRecorderGraph.cs index bac2ef3d0..1ac925ad0 100644 --- a/MechJeb2/MechJebModuleFlightRecorderGraph.cs +++ b/MechJeb2/MechJebModuleFlightRecorderGraph.cs @@ -311,7 +311,7 @@ protected override void WindowGUI(int windowID) GUI.color = XKCDColors.Beige; graphStates[(int)MechJebModuleFlightRecorder.RecordType.DELTA_V_EXPENDED].display = GUILayout.Toggle( - graphStates[(int)MechJebModuleFlightRecorder.RecordType.DELTA_V_EXPENDED].display, "∆V", GuiUtils.LayoutNoExpandWidth); + graphStates[(int)MechJebModuleFlightRecorder.RecordType.DELTA_V_EXPENDED].display, "ΔV", GuiUtils.LayoutNoExpandWidth); GUI.color = XKCDColors.Green; graphStates[(int)MechJebModuleFlightRecorder.RecordType.GRAVITY_LOSSES].display = GUILayout.Toggle( @@ -466,7 +466,7 @@ protected override void WindowGUI(int windowID) { GUI.color = XKCDColors.Beige; //if (GUILayout.Toggle(scaleIdx == (int)recordType.DeltaVExpended, "DeltaVExpended " + MuUtils.ToSI(graphStates[(int)recordType.DeltaVExpended].minimum, -1, 3) + " " + MuUtils.ToSI(graphStates[(int)recordType.DeltaVExpended].maximum, -1, 3), GuiUtils.LayoutExpandWidth)) - if (GUILayout.Toggle(scaleIdx == (int)MechJebModuleFlightRecorder.RecordType.DELTA_V_EXPENDED, "∆V", GuiUtils.LayoutExpandWidth)) + if (GUILayout.Toggle(scaleIdx == (int)MechJebModuleFlightRecorder.RecordType.DELTA_V_EXPENDED, "ΔV", GuiUtils.LayoutExpandWidth)) scaleIdx = (int)MechJebModuleFlightRecorder.RecordType.DELTA_V_EXPENDED; } diff --git a/MechJeb2/MechJebStageStatsHelper.cs b/MechJeb2/MechJebStageStatsHelper.cs index 8ef08b918..c6ef962f0 100644 --- a/MechJeb2/MechJebStageStatsHelper.cs +++ b/MechJeb2/MechJebStageStatsHelper.cs @@ -141,10 +141,10 @@ private void InitalizeStageHeaderData() stageHeaderData.Add(StageData.AtmoMaxTWR, CachedLocalizer.Instance.MechJebInfoItemsStatsColumn8 + SPACING); stageHeaderData.Add(StageData.Isp, CachedLocalizer.Instance.MechJebInfoItemsStatsColumn9 + SPACING); stageHeaderData.Add(StageData.RcsUllageTime, "RCS Ullage" + SPACING); - stageHeaderData.Add(StageData.AtmoDeltaV, (showRcs ? "RCS ∆Vmin" : CachedLocalizer.Instance.MechJebInfoItemsStatsColumn10) + SPACING); - stageHeaderData.Add(StageData.VacDeltaV, (showRcs ? "RCS ∆Vmax" : CachedLocalizer.Instance.MechJebInfoItemsStatsColumn11) + SPACING); - stageHeaderData.Add(StageData.AtmoCumulativeDeltaV, "Σ Atmo ∆V" + SPACING); - stageHeaderData.Add(StageData.VacCumulativeDeltaV, "Σ Vac ∆V" + SPACING); + stageHeaderData.Add(StageData.AtmoDeltaV, (showRcs ? "RCS ΔVmin" : CachedLocalizer.Instance.MechJebInfoItemsStatsColumn10) + SPACING); + stageHeaderData.Add(StageData.VacDeltaV, (showRcs ? "RCS ΔVmax" : CachedLocalizer.Instance.MechJebInfoItemsStatsColumn11) + SPACING); + stageHeaderData.Add(StageData.AtmoCumulativeDeltaV, "Σ Atmo ΔV" + SPACING); + stageHeaderData.Add(StageData.VacCumulativeDeltaV, "Σ Vac ΔV" + SPACING); stageHeaderData.Add(StageData.Time, CachedLocalizer.Instance.MechJebInfoItemsStatsColumn12 + SPACING); }