From 90bd2beb719786ca7307a00fabacb376a04827b4 Mon Sep 17 00:00:00 2001 From: christian-photo <77056626+christian-photo@users.noreply.github.com> Date: Fri, 6 Mar 2026 16:56:00 +0100 Subject: [PATCH] return false instead of throwing for HasSetupDialog --- Drivers/FocuserDriver.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Drivers/FocuserDriver.cs b/Drivers/FocuserDriver.cs index 9b3dfe3..8f08915 100644 --- a/Drivers/FocuserDriver.cs +++ b/Drivers/FocuserDriver.cs @@ -98,11 +98,11 @@ public int Position { public bool TempCompAvailable { get => false; } - public bool TempComp { get => false; set => throw new NotImplementedException(); } + public bool TempComp { get => false; set { } } public double Temperature { get => double.NaN; } - public bool HasSetupDialog => throw new NotImplementedException(); + public bool HasSetupDialog => false; public string Id { get => _info.Id; }