Skip to content

Commit

Permalink
use another formatter for clipboard
Browse files Browse the repository at this point in the history
  • Loading branch information
radistmorse committed Jan 1, 2018
1 parent bcaa93f commit 801b31b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NodeTools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ internal static bool NotNAN (this Vector3d v) {

internal static void CopyToClipboard (Orbit o, ManeuverNode node) {
string message = "Precise Maneuver Information\r\n";
message += String.Format ("Depart at: {0}\r\n", KSPUtil.dateTimeFormatter.PrintDate (node.UT, true, true));
message += String.Format ("Depart at: {0}\r\n", KSPUtil.dateTimeFormatter.PrintTime (node.UT, 10, false, true));
message += String.Format (" UT: {0:0}\r\n", node.UT);
double eang = o.GetEjectionAngle(node);
if (!double.IsNaN (eang)) {
Expand Down

0 comments on commit 801b31b

Please sign in to comment.