mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Revert to results panel before hiding when executing context menu
This commit is contained in:
parent
b40c1f8624
commit
b5b202fe88
1 changed files with 7 additions and 7 deletions
|
|
@ -211,11 +211,6 @@ namespace Flow.Launcher.ViewModel
|
|||
SpecialKeyState = GlobalHotkey.CheckModifiers()
|
||||
});
|
||||
|
||||
if (hideWindow)
|
||||
{
|
||||
Hide();
|
||||
}
|
||||
|
||||
if (SelectedIsFromQueryResults())
|
||||
{
|
||||
_userSelectedRecord.Add(result);
|
||||
|
|
@ -225,6 +220,11 @@ namespace Flow.Launcher.ViewModel
|
|||
{
|
||||
SelectedResults = Results;
|
||||
}
|
||||
|
||||
if (hideWindow)
|
||||
{
|
||||
Hide();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
|
@ -772,10 +772,10 @@ namespace Flow.Launcher.ViewModel
|
|||
|
||||
public void Show()
|
||||
{
|
||||
MainWindowVisibility = Visibility.Visible;
|
||||
|
||||
SelectedResults = Results;
|
||||
|
||||
MainWindowVisibility = Visibility.Visible;
|
||||
|
||||
MainWindowVisibilityStatus = true;
|
||||
|
||||
MainWindowOpacity = 1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue