mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Check for offset
This commit is contained in:
parent
1dd9e2c3d2
commit
ef76b96dc5
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ namespace Flow.Launcher.Converters
|
|||
var selectedResultActionKeyword = string.IsNullOrEmpty(selectedResult.ActionKeywordAssigned) ? "" : selectedResult.ActionKeywordAssigned + " ";
|
||||
var selectedResultPossibleSuggestion = selectedResultActionKeyword + selectedResult.Title;
|
||||
|
||||
if (!selectedResultPossibleSuggestion.StartsWith(queryText, StringComparison.CurrentCultureIgnoreCase))
|
||||
if (!selectedResultPossibleSuggestion.StartsWith(queryText, StringComparison.CurrentCultureIgnoreCase) || QueryTextBox.HorizontalOffset != 0)
|
||||
return string.Empty;
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue