Needed to change one more thing
This commit is contained in:
@@ -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(':');
|
||||
|
||||
|
||||
Reference in New Issue
Block a user