fix an api changed

This commit is contained in:
Kevin Zhang 2021-12-05 17:47:07 -06:00
parent b3155bcfed
commit 8f18e2f603

View file

@ -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;
}