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
+6 -2
View File
@@ -147,7 +147,11 @@ public partial class App
EventManager.RegisterClassHandler(typeof(UIElement), UIElement.KeyDownEvent, new RoutedEventHandler(GlobalClick));
_host.Services.GetRequiredService<MainSuite>().Show();
};
login.Closed += (sender, args) =>
{
if (!login.MainSuiteOpened)
_inferenceClient.Stop();
};
login.ShowDialog();
}
@@ -246,4 +250,4 @@ public partial class App
base.OnExit(e);
await _host.StopAsync();
}
}
}