ReQuery new param "reselect"

This commit is contained in:
AminSallah 2024-02-25 04:13:09 +02:00 committed by GitHub
parent 1d6c4cee2e
commit ae84dae66d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -315,7 +315,7 @@ namespace Flow.Launcher
public void RegisterGlobalKeyboardCallback(Func<int, int, SpecialKeyState, bool> callback) => _globalKeyboardHandlers.Add(callback);
public void RemoveGlobalKeyboardCallback(Func<int, int, SpecialKeyState, bool> callback) => _globalKeyboardHandlers.Remove(callback);
public void ReQuery() => _mainVM.ReQuery();
public void ReQuery(bool reselect = true) => _mainVM.ReQuery(reselect);
#endregion