mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
fix an api changed
This commit is contained in:
parent
b3155bcfed
commit
8f18e2f603
1 changed files with 2 additions and 2 deletions
|
|
@ -244,8 +244,8 @@ namespace Flow.Launcher.ViewModel
|
|||
autoCompleteText = SelectedResults.SelectedItem.QuerySuggestionText;
|
||||
}
|
||||
|
||||
var SpecialKeyState = GlobalHotkey.Instance.CheckModifiers();
|
||||
if (SpecialKeyState.ShiftPressed)
|
||||
var specialKeyState = GlobalHotkey.CheckModifiers();
|
||||
if (specialKeyState.ShiftPressed)
|
||||
{
|
||||
autoCompleteText = result.SubTitle;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue