Fixed defect where the guide rate wasn't being saved properly

This commit is contained in:
2019-07-23 21:00:30 +01:00
parent 355320a4ba
commit 93c63cc014
+2 -1
View File
@@ -55,7 +55,8 @@ namespace ASCOM.Meade.net
var profileProperties = new ProfileProperties
{
TraceLogger = chkTrace.Checked,
ComPort = comboBoxComPort.SelectedItem.ToString()
ComPort = comboBoxComPort.SelectedItem.ToString(),
GuideRateArcSecondsPerSecond = double.Parse(txtGuideRate.Text)
};
return profileProperties;