mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
do not auto-complete from context menus
This commit is contained in:
parent
f2755dae4f
commit
75019de9f3
1 changed files with 1 additions and 1 deletions
|
|
@ -229,7 +229,7 @@ namespace Flow.Launcher.ViewModel
|
||||||
AutocompleteQueryCommand = new RelayCommand(_ =>
|
AutocompleteQueryCommand = new RelayCommand(_ =>
|
||||||
{
|
{
|
||||||
var result = SelectedResults.SelectedItem?.Result;
|
var result = SelectedResults.SelectedItem?.Result;
|
||||||
if (result != null) // SelectedItem returns null if selection is empty.
|
if (result != null && SelectedIsFromQueryResults()) // SelectedItem returns null if selection is empty.
|
||||||
{
|
{
|
||||||
var autoCompleteText = result.Title;
|
var autoCompleteText = result.Title;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue