@@ -179,7 +179,7 @@ public bool ShowHistoryResultsForHomePage
179
179
get => _showHistoryResultsForHomePage ;
180
180
set
181
181
{
182
- if ( _showHistoryResultsForHomePage != value )
182
+ if ( _showHistoryResultsForHomePage != value )
183
183
{
184
184
_showHistoryResultsForHomePage = value ;
185
185
OnPropertyChanged ( ) ;
@@ -404,29 +404,29 @@ public List<RegisteredHotkeyData> RegisteredHotkeys
404
404
var list = FixedHotkeys ( ) ;
405
405
406
406
// Customizeable hotkeys
407
- if ( ! string . IsNullOrEmpty ( Hotkey ) )
407
+ if ( ! string . IsNullOrEmpty ( Hotkey ) )
408
408
list . Add ( new ( Hotkey , "flowlauncherHotkey" , ( ) => Hotkey = "" ) ) ;
409
- if ( ! string . IsNullOrEmpty ( PreviewHotkey ) )
409
+ if ( ! string . IsNullOrEmpty ( PreviewHotkey ) )
410
410
list . Add ( new ( PreviewHotkey , "previewHotkey" , ( ) => PreviewHotkey = "" ) ) ;
411
- if ( ! string . IsNullOrEmpty ( AutoCompleteHotkey ) )
411
+ if ( ! string . IsNullOrEmpty ( AutoCompleteHotkey ) )
412
412
list . Add ( new ( AutoCompleteHotkey , "autoCompleteHotkey" , ( ) => AutoCompleteHotkey = "" ) ) ;
413
- if ( ! string . IsNullOrEmpty ( AutoCompleteHotkey2 ) )
413
+ if ( ! string . IsNullOrEmpty ( AutoCompleteHotkey2 ) )
414
414
list . Add ( new ( AutoCompleteHotkey2 , "autoCompleteHotkey" , ( ) => AutoCompleteHotkey2 = "" ) ) ;
415
- if ( ! string . IsNullOrEmpty ( SelectNextItemHotkey ) )
415
+ if ( ! string . IsNullOrEmpty ( SelectNextItemHotkey ) )
416
416
list . Add ( new ( SelectNextItemHotkey , "SelectNextItemHotkey" , ( ) => SelectNextItemHotkey = "" ) ) ;
417
- if ( ! string . IsNullOrEmpty ( SelectNextItemHotkey2 ) )
417
+ if ( ! string . IsNullOrEmpty ( SelectNextItemHotkey2 ) )
418
418
list . Add ( new ( SelectNextItemHotkey2 , "SelectNextItemHotkey" , ( ) => SelectNextItemHotkey2 = "" ) ) ;
419
- if ( ! string . IsNullOrEmpty ( SelectPrevItemHotkey ) )
419
+ if ( ! string . IsNullOrEmpty ( SelectPrevItemHotkey ) )
420
420
list . Add ( new ( SelectPrevItemHotkey , "SelectPrevItemHotkey" , ( ) => SelectPrevItemHotkey = "" ) ) ;
421
- if ( ! string . IsNullOrEmpty ( SelectPrevItemHotkey2 ) )
421
+ if ( ! string . IsNullOrEmpty ( SelectPrevItemHotkey2 ) )
422
422
list . Add ( new ( SelectPrevItemHotkey2 , "SelectPrevItemHotkey" , ( ) => SelectPrevItemHotkey2 = "" ) ) ;
423
- if ( ! string . IsNullOrEmpty ( SettingWindowHotkey ) )
423
+ if ( ! string . IsNullOrEmpty ( SettingWindowHotkey ) )
424
424
list . Add ( new ( SettingWindowHotkey , "SettingWindowHotkey" , ( ) => SettingWindowHotkey = "" ) ) ;
425
- if ( ! string . IsNullOrEmpty ( OpenContextMenuHotkey ) )
425
+ if ( ! string . IsNullOrEmpty ( OpenContextMenuHotkey ) )
426
426
list . Add ( new ( OpenContextMenuHotkey , "OpenContextMenuHotkey" , ( ) => OpenContextMenuHotkey = "" ) ) ;
427
- if ( ! string . IsNullOrEmpty ( SelectNextPageHotkey ) )
427
+ if ( ! string . IsNullOrEmpty ( SelectNextPageHotkey ) )
428
428
list . Add ( new ( SelectNextPageHotkey , "SelectNextPageHotkey" , ( ) => SelectNextPageHotkey = "" ) ) ;
429
- if ( ! string . IsNullOrEmpty ( SelectPrevPageHotkey ) )
429
+ if ( ! string . IsNullOrEmpty ( SelectPrevPageHotkey ) )
430
430
list . Add ( new ( SelectPrevPageHotkey , "SelectPrevPageHotkey" , ( ) => SelectPrevPageHotkey = "" ) ) ;
431
431
if ( ! string . IsNullOrEmpty ( CycleHistoryUpHotkey ) )
432
432
list . Add ( new ( CycleHistoryUpHotkey , "CycleHistoryUpHotkey" , ( ) => CycleHistoryUpHotkey = "" ) ) ;
0 commit comments