Skip to content

Commit

Permalink
Minor interface changes
Browse files Browse the repository at this point in the history
  • Loading branch information
KSP-TaxiService committed Dec 16, 2019
1 parent 3bb123b commit cc87a7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/RemoteTech/FlightComputer/Commands/AbstractCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public virtual String Description {
{
var extra = ExtraDelay > 0 ? String.Format("{0} + {1}", RTUtil.FormatDuration(delay), RTUtil.FormatDuration(ExtraDelay))
: RTUtil.FormatDuration(delay);
return Localizer.Format("#RT_Command_Signaldelay") + extra;//"Signal delay: "
return Localizer.Format("#RT_Command_Signaldelay")+ " " + extra;//"Signal delay: "
}
return "";
}
Expand Down
2 changes: 1 addition & 1 deletion src/RemoteTech/Modules/ModuleRTAntenna.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public override string GetInfo()

if (IsRTActive)
{
info.AppendLine("<color=#89929B>" + Localizer.Format("#RT_Editor_Activatedbydefault") + "</color>");//"Activated by default"
info.AppendLine("<color=green>" + Localizer.Format("#RT_Editor_Activatedbydefault") + "</color>");//"Activated by default"
}

if (MaxQ > 0)
Expand Down

0 comments on commit cc87a7e

Please sign in to comment.