From c0720120737667f23815bdd62fe6c6bdf2f8182a Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Sun, 23 Feb 2025 13:19:55 +0800 Subject: [PATCH] Fix parameter name issue. --- Flow.Launcher/CustomQueryHotkeySetting.xaml.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Flow.Launcher/CustomQueryHotkeySetting.xaml.cs b/Flow.Launcher/CustomQueryHotkeySetting.xaml.cs index af3c8f6c9..53fa173a5 100644 --- a/Flow.Launcher/CustomQueryHotkeySetting.xaml.cs +++ b/Flow.Launcher/CustomQueryHotkeySetting.xaml.cs @@ -11,12 +11,13 @@ namespace Flow.Launcher { public partial class CustomQueryHotkeySetting : Window { + private readonly Settings _settings; private bool update; private CustomPluginHotkey updateCustomHotkey; public CustomQueryHotkeySetting(Settings settings) { - Settings = settings; + _settings = settings; InitializeComponent(); }