Changed how the precision item is saved. Removed the case-sensitivity.

This commit is contained in:
2019-08-18 22:26:58 +01:00
parent 7542e86aeb
commit 98feb74870
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -417,13 +417,13 @@ namespace ASCOM.Meade.net
private void SetTelescopePrecision(string propertyName)
{
switch (_precision)
switch (_precision.ToLower())
{
case "High":
case "high":
TelescopePointingPrecision(true);
LogMessage(propertyName, $"High precision slewing selected");
break;
case "Low":
case "low":
TelescopePointingPrecision(false);
LogMessage(propertyName, $"Low precision slewing selected");
break;