mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Merge pull request #953 from Flow-Launcher/disableshellwinr
stop trigger global hotkey when shell plugin is not enabled
This commit is contained in:
commit
de97cd4e52
2 changed files with 2 additions and 2 deletions
|
|
@ -317,7 +317,7 @@ namespace Flow.Launcher.Plugin.Shell
|
||||||
|
|
||||||
bool API_GlobalKeyboardEvent(int keyevent, int vkcode, SpecialKeyState state)
|
bool API_GlobalKeyboardEvent(int keyevent, int vkcode, SpecialKeyState state)
|
||||||
{
|
{
|
||||||
if (_settings.ReplaceWinR)
|
if (!context.CurrentPluginMetadata.Disabled && _settings.ReplaceWinR)
|
||||||
{
|
{
|
||||||
if (keyevent == (int)KeyEvent.WM_KEYDOWN && vkcode == (int)Keys.R && state.WinPressed)
|
if (keyevent == (int)KeyEvent.WM_KEYDOWN && vkcode == (int)Keys.R && state.WinPressed)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
"Name": "Shell",
|
"Name": "Shell",
|
||||||
"Description": "Provide executing commands from Flow Launcher",
|
"Description": "Provide executing commands from Flow Launcher",
|
||||||
"Author": "qianlifeng",
|
"Author": "qianlifeng",
|
||||||
"Version": "1.4.8",
|
"Version": "1.4.9",
|
||||||
"Language": "csharp",
|
"Language": "csharp",
|
||||||
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
|
"Website": "https://github.com/Flow-Launcher/Flow.Launcher",
|
||||||
"ExecuteFileName": "Flow.Launcher.Plugin.Shell.dll",
|
"ExecuteFileName": "Flow.Launcher.Plugin.Shell.dll",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue