add silent detection - don't send to queue if enable

This commit is contained in:
Alex Bezdieniezhnykh
2025-04-27 21:43:45 +03:00
parent 5ff4ee58b9
commit 47aa8b862b
9 changed files with 18 additions and 12 deletions
+3 -3
View File
@@ -119,9 +119,6 @@ public partial class MainSuite
if (_openedWindows.Any())
return;
_inferenceClient.Stop();
_gpsMatcherClient.Stop();
Close();
};
window.Show();
@@ -145,6 +142,9 @@ public partial class MainSuite
_dbFactory.SaveToDisk();
foreach (var window in _openedWindows)
window.Value.Close();
_inferenceClient.Stop();
_gpsMatcherClient.Stop();
Application.Current.Shutdown();
}