Introduce param "reselect" to ReQuery instance

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

View file

@ -293,9 +293,10 @@ namespace Flow.Launcher.Plugin
public bool IsGameModeOn(); public bool IsGameModeOn();
/// <summary> /// <summary>
/// Reload Query /// Reloads the query.
/// This method should run
/// </summary> /// </summary>
/// <returns></returns> /// <param name="reselect">Choose the first result after reload if true; keep the last selected result if false. Default is true.</param>
public void ReQuery(); public void ReQuery(bool reselect = true);
} }
} }