Skip to content

Commit c072012

Browse files
committed
Fix parameter name issue.
1 parent cdf02d5 commit c072012

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Flow.Launcher/CustomQueryHotkeySetting.xaml.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,13 @@ namespace Flow.Launcher
1111
{
1212
public partial class CustomQueryHotkeySetting : Window
1313
{
14+
private readonly Settings _settings;
1415
private bool update;
1516
private CustomPluginHotkey updateCustomHotkey;
1617

1718
public CustomQueryHotkeySetting(Settings settings)
1819
{
19-
Settings = settings;
20+
_settings = settings;
2021
InitializeComponent();
2122
}
2223

0 commit comments

Comments
 (0)