mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Corrected Automatic Formatting
This commit is contained in:
parent
0536a2be33
commit
0982e12a80
1 changed files with 4 additions and 3 deletions
|
|
@ -297,7 +297,8 @@ namespace Wox {
|
|||
private bool IsWebSearchMode {
|
||||
get {
|
||||
Query q = new Query(tbQuery.Text);
|
||||
return !UserSettingStorage.Instance.EnableWebSearchSuggestion &&UserSettingStorage.Instance.WebSearches.Exists(o => o.ActionWord == q.ActionName && o.Enabled);
|
||||
return !UserSettingStorage.Instance.EnableWebSearchSuggestion &&
|
||||
UserSettingStorage.Instance.WebSearches.Exists(o => o.ActionWord == q.ActionName && o.Enabled);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -444,7 +445,7 @@ namespace Wox {
|
|||
if (IsCMDMode) updateCmdMode();
|
||||
toolTip.IsOpen = false;
|
||||
e.Handled = true;
|
||||
break;
|
||||
break;
|
||||
|
||||
case Key.Back:
|
||||
if (BackKeyDownEvent != null) {
|
||||
|
|
@ -455,8 +456,8 @@ namespace Wox {
|
|||
}
|
||||
break;
|
||||
|
||||
case Key.Tab:
|
||||
case Key.Enter:
|
||||
case Key.Tab:
|
||||
AcceptSelect(resultCtrl.GetActiveResult());
|
||||
e.Handled = true;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue