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();
/// <summary>
/// Reload Query
/// Reloads the query.
/// This method should run
/// </summary>
/// <returns></returns>
public void ReQuery();
/// <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(bool reselect = true);
}
}