From cda33df0b0e545c42dc22cc19284fec75981faa1 Mon Sep 17 00:00:00 2001 From: Koisu Date: Fri, 27 Jun 2025 10:29:26 -0700 Subject: [PATCH] Make constructor protected --- Flow.Launcher.Plugin/PluginHotkey.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Flow.Launcher.Plugin/PluginHotkey.cs b/Flow.Launcher.Plugin/PluginHotkey.cs index 4067289e6..18f650e88 100644 --- a/Flow.Launcher.Plugin/PluginHotkey.cs +++ b/Flow.Launcher.Plugin/PluginHotkey.cs @@ -14,7 +14,7 @@ public class BasePluginHotkey /// Initializes a new instance of the class with the specified hotkey type. /// /// - public BasePluginHotkey(HotkeyType type) + protected BasePluginHotkey(HotkeyType type) { HotkeyType = type; }