mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Change Shortcut each other (+-,[])
This commit is contained in:
parent
16400ab7ff
commit
9cfb92b6f3
2 changed files with 6 additions and 6 deletions
|
|
@ -41,7 +41,7 @@
|
|||
<system:String x:Key="LastQuerySelected">Select last Query</system:String>
|
||||
<system:String x:Key="LastQueryEmpty">Empty last Query</system:String>
|
||||
<system:String x:Key="maxShowResults">Maximum results shown</system:String>
|
||||
<system:String x:Key="maxShowResultsToolTip">You can quick adjust CTRL+[ and CTRL+] in query box.</system:String>
|
||||
<system:String x:Key="maxShowResultsToolTip">You can quick adjust CTRL+Plus and CTRL+Minus in query box.</system:String>
|
||||
<system:String x:Key="ignoreHotkeysOnFullscreen">Ignore hotkeys in fullscreen mode</system:String>
|
||||
<system:String x:Key="ignoreHotkeysOnFullscreenToolTip">Disable Flow Launcher activation when a full screen application is active (Recommended for games).</system:String>
|
||||
<system:String x:Key="defaultFileManager">Default File Manager</system:String>
|
||||
|
|
@ -125,7 +125,7 @@
|
|||
<system:String x:Key="queryWindowShadowEffect">Query window shadow effect</system:String>
|
||||
<system:String x:Key="shadowEffectCPUUsage">Shadow effect has a substantial usage of GPU. Not recommended if your computer performance is limited.</system:String>
|
||||
<system:String x:Key="windowWidthSize">Window Width Size</system:String>
|
||||
<system:String x:Key="windowWidthSizeToolTip">You can quick adjust Ctrl+Plus/Minus Key in query box too.</system:String>
|
||||
<system:String x:Key="windowWidthSizeToolTip">You can quick adjust Ctrl+[, Ctrl+] in query box too.</system:String>
|
||||
<system:String x:Key="useGlyphUI">Use Segoe Fluent Icons</system:String>
|
||||
<system:String x:Key="useGlyphUIEffect">Use Segoe Fluent Icons for query results where supported</system:String>
|
||||
|
||||
|
|
|
|||
|
|
@ -530,7 +530,7 @@ namespace Flow.Launcher
|
|||
}
|
||||
}
|
||||
break;
|
||||
case Key.OemMinus:
|
||||
case Key.OemCloseBrackets:
|
||||
if (specialKeyState.CtrlPressed)
|
||||
{
|
||||
if (_settings.WindowSize < 400)
|
||||
|
|
@ -543,14 +543,14 @@ namespace Flow.Launcher
|
|||
}
|
||||
}
|
||||
break;
|
||||
case Key.OemPlus:
|
||||
case Key.OemOpenBrackets:
|
||||
if (specialKeyState.CtrlPressed)
|
||||
{
|
||||
_settings.WindowSize = _settings.WindowSize + 100;
|
||||
Left = Left - 50;
|
||||
}
|
||||
break;
|
||||
case Key.OemOpenBrackets:
|
||||
case Key.OemPlus:
|
||||
if (specialKeyState.CtrlPressed)
|
||||
{
|
||||
if (_settings.MaxResultsToShow < 2)
|
||||
|
|
@ -562,7 +562,7 @@ namespace Flow.Launcher
|
|||
}
|
||||
}
|
||||
break;
|
||||
case Key.OemCloseBrackets:
|
||||
case Key.OemMinus:
|
||||
if (specialKeyState.CtrlPressed)
|
||||
{
|
||||
_settings.MaxResultsToShow = _settings.MaxResultsToShow + 1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue