mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Don't copy query if blank
This commit is contained in:
parent
2bd164f11e
commit
bf317b8caa
1 changed files with 2 additions and 2 deletions
|
|
@ -60,9 +60,9 @@ namespace Flow.Launcher
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else if (!String.IsNullOrEmpty(QueryTextBox.Text))
|
||||||
{
|
{
|
||||||
System.Windows.Clipboard.SetDataObject(QueryTextBox.SelectedText;);
|
System.Windows.Clipboard.SetDataObject(QueryTextBox.SelectedText);
|
||||||
}
|
}
|
||||||
e.Handled = true;
|
e.Handled = true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue