Skip to content

Commit 7399d11

Browse files
committed
Add whitespace for if
1 parent 0b44097 commit 7399d11

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

Flow.Launcher.Infrastructure/UserSettings/Settings.cs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ public bool ShowHistoryResultsForHomePage
179179
get => _showHistoryResultsForHomePage;
180180
set
181181
{
182-
if(_showHistoryResultsForHomePage != value)
182+
if (_showHistoryResultsForHomePage != value)
183183
{
184184
_showHistoryResultsForHomePage = value;
185185
OnPropertyChanged();
@@ -404,29 +404,29 @@ public List<RegisteredHotkeyData> RegisteredHotkeys
404404
var list = FixedHotkeys();
405405

406406
// Customizeable hotkeys
407-
if(!string.IsNullOrEmpty(Hotkey))
407+
if (!string.IsNullOrEmpty(Hotkey))
408408
list.Add(new(Hotkey, "flowlauncherHotkey", () => Hotkey = ""));
409-
if(!string.IsNullOrEmpty(PreviewHotkey))
409+
if (!string.IsNullOrEmpty(PreviewHotkey))
410410
list.Add(new(PreviewHotkey, "previewHotkey", () => PreviewHotkey = ""));
411-
if(!string.IsNullOrEmpty(AutoCompleteHotkey))
411+
if (!string.IsNullOrEmpty(AutoCompleteHotkey))
412412
list.Add(new(AutoCompleteHotkey, "autoCompleteHotkey", () => AutoCompleteHotkey = ""));
413-
if(!string.IsNullOrEmpty(AutoCompleteHotkey2))
413+
if (!string.IsNullOrEmpty(AutoCompleteHotkey2))
414414
list.Add(new(AutoCompleteHotkey2, "autoCompleteHotkey", () => AutoCompleteHotkey2 = ""));
415-
if(!string.IsNullOrEmpty(SelectNextItemHotkey))
415+
if (!string.IsNullOrEmpty(SelectNextItemHotkey))
416416
list.Add(new(SelectNextItemHotkey, "SelectNextItemHotkey", () => SelectNextItemHotkey = ""));
417-
if(!string.IsNullOrEmpty(SelectNextItemHotkey2))
417+
if (!string.IsNullOrEmpty(SelectNextItemHotkey2))
418418
list.Add(new(SelectNextItemHotkey2, "SelectNextItemHotkey", () => SelectNextItemHotkey2 = ""));
419-
if(!string.IsNullOrEmpty(SelectPrevItemHotkey))
419+
if (!string.IsNullOrEmpty(SelectPrevItemHotkey))
420420
list.Add(new(SelectPrevItemHotkey, "SelectPrevItemHotkey", () => SelectPrevItemHotkey = ""));
421-
if(!string.IsNullOrEmpty(SelectPrevItemHotkey2))
421+
if (!string.IsNullOrEmpty(SelectPrevItemHotkey2))
422422
list.Add(new(SelectPrevItemHotkey2, "SelectPrevItemHotkey", () => SelectPrevItemHotkey2 = ""));
423-
if(!string.IsNullOrEmpty(SettingWindowHotkey))
423+
if (!string.IsNullOrEmpty(SettingWindowHotkey))
424424
list.Add(new(SettingWindowHotkey, "SettingWindowHotkey", () => SettingWindowHotkey = ""));
425-
if(!string.IsNullOrEmpty(OpenContextMenuHotkey))
425+
if (!string.IsNullOrEmpty(OpenContextMenuHotkey))
426426
list.Add(new(OpenContextMenuHotkey, "OpenContextMenuHotkey", () => OpenContextMenuHotkey = ""));
427-
if(!string.IsNullOrEmpty(SelectNextPageHotkey))
427+
if (!string.IsNullOrEmpty(SelectNextPageHotkey))
428428
list.Add(new(SelectNextPageHotkey, "SelectNextPageHotkey", () => SelectNextPageHotkey = ""));
429-
if(!string.IsNullOrEmpty(SelectPrevPageHotkey))
429+
if (!string.IsNullOrEmpty(SelectPrevPageHotkey))
430430
list.Add(new(SelectPrevPageHotkey, "SelectPrevPageHotkey", () => SelectPrevPageHotkey = ""));
431431
if (!string.IsNullOrEmpty(CycleHistoryUpHotkey))
432432
list.Add(new(CycleHistoryUpHotkey, "CycleHistoryUpHotkey", () => CycleHistoryUpHotkey = ""));

0 commit comments

Comments
 (0)