Skip to content

Commit

Permalink
Removed superfluous 'm/s' on the mach slider in the build engineer.
Browse files Browse the repository at this point in the history
  • Loading branch information
CYBUTEK committed Apr 27, 2015
1 parent 6b802a2 commit de8676f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions Documents/CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.0.16.3, 27-04-2015
Fixed issue with the toolbar icons not being created.
Removed superfluous 'm/s' on the mach slider in the build engineer.

1.0.16.2, 27-04-2015
Changed the atmospheric slider on the build engineer to default to 0km when changing bodies.

Expand Down
4 changes: 2 additions & 2 deletions KerbalEngineer/Editor/BuildAdvanced.cs
Original file line number Diff line number Diff line change
Expand Up @@ -303,9 +303,9 @@ private void DrawAtmosphericDetails()
GUILayout.EndVertical();

GUILayout.Space(5.0f);

GUILayout.BeginVertical();
GUILayout.Label("Mach: " + this.atmosphericMach.ToString("F1") + "m/s", this.settingAtmoStyle, GUILayout.Width(125.0f * GuiDisplaySize.Offset));
GUILayout.Label("Mach: " + this.atmosphericMach.ToString("F1"), this.settingAtmoStyle, GUILayout.Width(125.0f * GuiDisplaySize.Offset));
GUI.skin = HighLogic.Skin;
atmosphericMach = GUILayout.HorizontalSlider(Mathf.Clamp(atmosphericMach, 0.0f, SimManager.LastStage.maxMach), 0.0f, SimManager.LastStage.maxMach);
GUI.skin = null;
Expand Down
2 changes: 1 addition & 1 deletion KerbalEngineer/EngineerGlobals.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class EngineerGlobals
/// <summary>
/// Current version of the Kerbal Engineer assembly.
/// </summary>
public const string AssemblyVersion = "1.0.16.2";
public const string AssemblyVersion = "1.0.16.3";

#endregion

Expand Down
Binary file modified Output/KerbalEngineer/KerbalEngineer.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Output/KerbalEngineer/KerbalEngineer.version
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"MAJOR":1,
"MINOR":0,
"PATCH":16,
"BUILD":2
"BUILD":3
},
"KSP_VERSION":
{
Expand Down

0 comments on commit de8676f

Please sign in to comment.