From 902d6bbc6e941eeff13bccd127f6d7bb02356723 Mon Sep 17 00:00:00 2001 From: Colin Date: Sun, 17 Jan 2021 18:23:20 +0000 Subject: [PATCH] Added a check to the telescope to ensure that this is only triggered for the LX200CLASSIC other scopes do not need to the extra work. --- Meade.net.Telescope/Telescope.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Meade.net.Telescope/Telescope.cs b/Meade.net.Telescope/Telescope.cs index 46298c2..daef85a 100644 --- a/Meade.net.Telescope/Telescope.cs +++ b/Meade.net.Telescope/Telescope.cs @@ -515,6 +515,9 @@ namespace ASCOM.Meade.net /// private bool IsTargetCoordinateInitRequired() { + if (SharedResourcesWrapper.ProductName != TelescopeList.LX200CLASSIC) + return false; + if (!_isTargetCoordinateInitRequired) return _isTargetCoordinateInitRequired;