Skip to content

Commit 23470b6

Browse files
committed
Code quality
1 parent 5a88a1f commit 23470b6

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Flow.Launcher.Infrastructure/UserSettings/Settings.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public string Theme
111111
public double SettingWindowHeight { get; set; } = 700;
112112
public double? SettingWindowTop { get; set; } = null;
113113
public double? SettingWindowLeft { get; set; } = null;
114-
public System.Windows.WindowState SettingWindowState { get; set; } = WindowState.Normal;
114+
public WindowState SettingWindowState { get; set; } = WindowState.Normal;
115115

116116
public int CustomExplorerIndex { get; set; } = 0;
117117

@@ -245,7 +245,6 @@ public SearchPrecisionScore QuerySearchPrecision
245245
public int MaxResultsToShow { get; set; } = 5;
246246
public int ActivateTimes { get; set; }
247247

248-
249248
public ObservableCollection<CustomPluginHotkey> CustomPluginHotkeys { get; set; } = new ObservableCollection<CustomPluginHotkey>();
250249

251250
public ObservableCollection<CustomShortcutModel> CustomShortcuts { get; set; } = new ObservableCollection<CustomShortcutModel>();
@@ -266,7 +265,7 @@ public SearchPrecisionScore QuerySearchPrecision
266265
bool _hideNotifyIcon { get; set; }
267266
public bool HideNotifyIcon
268267
{
269-
get { return _hideNotifyIcon; }
268+
get => _hideNotifyIcon;
270269
set
271270
{
272271
_hideNotifyIcon = value;
@@ -322,7 +321,6 @@ public bool SearchQueryResultsWithDelay
322321
[JsonIgnore]
323322
public bool WMPInstalled { get; set; } = true;
324323

325-
326324
// This needs to be loaded last by staying at the bottom
327325
public PluginsSettings PluginSettings { get; set; } = new PluginsSettings();
328326

0 commit comments

Comments
 (0)