mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix result modifier not working
This commit is contained in:
parent
e5d95f36b3
commit
bc28da7184
1 changed files with 5 additions and 2 deletions
|
|
@ -241,10 +241,13 @@ namespace Flow.Launcher.ViewModel
|
|||
}
|
||||
}
|
||||
[RelayCommand]
|
||||
private async Task OpenResult()
|
||||
private async Task OpenResultAsync(string index)
|
||||
{
|
||||
var results = SelectedResults;
|
||||
|
||||
if (index is not null)
|
||||
{
|
||||
results.SelectedIndex = int.Parse(index);
|
||||
}
|
||||
var result = results.SelectedItem?.Result;
|
||||
if (result == null)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue