Needed to change one more thing

This commit is contained in:
2022-11-12 15:47:35 +00:00
parent c380016b71
commit a2b15f291d
2 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -3450,7 +3450,7 @@ namespace ASCOM.Meade.net
var dms = useLongFormat
? _utilities.DegreesToDMS(value, "*", ":", ":", _digitsDe)
//: _utilities.DegreesToDM(value, "*", "", _digitsDe);
: _utilities.DegreesToDMS(value, "*", ":", ":", 0);
: _utilities.DegreesToDMS(value, "*", ":", ".", 0);
var s = value < 0 ? string.Empty : "+";
@@ -3538,7 +3538,7 @@ namespace ASCOM.Meade.net
var hms = useLongFormat
? _utilities.HoursToHMS(value, ":", ":", ":", _digitsRa)
//: _utilities.HoursToHM(value, ":", "", _digitsRa).Replace(',', '.');
: _utilities.HoursToHMS(value, ":", ":", ":", 0);
: _utilities.HoursToHMS(value, ":", ":", ".", 0);
hms = hms.TrimEnd(':');