@@ -111,7 +111,7 @@ public string Theme
111
111
public double SettingWindowHeight { get ; set ; } = 700 ;
112
112
public double ? SettingWindowTop { get ; set ; } = null ;
113
113
public double ? SettingWindowLeft { get ; set ; } = null ;
114
- public System . Windows . WindowState SettingWindowState { get ; set ; } = WindowState . Normal ;
114
+ public WindowState SettingWindowState { get ; set ; } = WindowState . Normal ;
115
115
116
116
public int CustomExplorerIndex { get ; set ; } = 0 ;
117
117
@@ -245,7 +245,6 @@ public SearchPrecisionScore QuerySearchPrecision
245
245
public int MaxResultsToShow { get ; set ; } = 5 ;
246
246
public int ActivateTimes { get ; set ; }
247
247
248
-
249
248
public ObservableCollection < CustomPluginHotkey > CustomPluginHotkeys { get ; set ; } = new ObservableCollection < CustomPluginHotkey > ( ) ;
250
249
251
250
public ObservableCollection < CustomShortcutModel > CustomShortcuts { get ; set ; } = new ObservableCollection < CustomShortcutModel > ( ) ;
@@ -266,7 +265,7 @@ public SearchPrecisionScore QuerySearchPrecision
266
265
bool _hideNotifyIcon { get ; set ; }
267
266
public bool HideNotifyIcon
268
267
{
269
- get { return _hideNotifyIcon ; }
268
+ get => _hideNotifyIcon ;
270
269
set
271
270
{
272
271
_hideNotifyIcon = value ;
@@ -322,7 +321,6 @@ public bool SearchQueryResultsWithDelay
322
321
[ JsonIgnore ]
323
322
public bool WMPInstalled { get ; set ; } = true ;
324
323
325
-
326
324
// This needs to be loaded last by staying at the bottom
327
325
public PluginsSettings PluginSettings { get ; set ; } = new PluginsSettings ( ) ;
328
326
0 commit comments