mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Only insert when explorer is active
This commit is contained in:
parent
fe0153be08
commit
79a6fda289
1 changed files with 5 additions and 2 deletions
|
|
@ -793,8 +793,11 @@ namespace Flow.Launcher.ViewModel
|
|||
public void Show()
|
||||
{
|
||||
string _explorerPath = GetActiveExplorerPath();
|
||||
|
||||
ChangeQueryText($"{_explorerPath}\\>");
|
||||
if (_explorerPath != null)
|
||||
{
|
||||
ChangeQueryText($"{_explorerPath}\\>");
|
||||
}
|
||||
|
||||
if (_settings.UseSound)
|
||||
{
|
||||
MediaPlayer media = new MediaPlayer();
|
||||
|
|
|
|||
Loading…
Reference in a new issue