From 0522fc79f44f1a3c485aca252a095c30948f213f Mon Sep 17 00:00:00 2001 From: AminSallah <124622454+AminSallah@users.noreply.github.com> Date: Fri, 23 Feb 2024 23:27:34 +0200 Subject: [PATCH] Add ReQuery Instance --- Flow.Launcher/PublicAPIInstance.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Flow.Launcher/PublicAPIInstance.cs b/Flow.Launcher/PublicAPIInstance.cs index 36309a22a..5efc2324e 100644 --- a/Flow.Launcher/PublicAPIInstance.cs +++ b/Flow.Launcher/PublicAPIInstance.cs @@ -315,6 +315,8 @@ namespace Flow.Launcher public void RegisterGlobalKeyboardCallback(Func callback) => _globalKeyboardHandlers.Add(callback); public void RemoveGlobalKeyboardCallback(Func callback) => _globalKeyboardHandlers.Remove(callback); + public void ReQuery() => _mainVM.ReQuery(); + #endregion #region Private Methods