@@ -85,7 +85,7 @@ public sealed partial class NavigationToolbarViewModel : ObservableObject, IAddr
8585 [ Obsolete ( "Superseded by Omnibar." ) ]
8686 public bool SearchHasFocus { get ; private set ; }
8787
88- public bool EnableOmnibar => GeneralSettingsService . EnableOmnibar ;
88+ public bool EnableOmnibarDesign => GeneralSettingsService . EnableOmnibarDesign ;
8989 public bool ShowStatusCenterButton =>
9090 AppearanceSettingsService . StatusCenterVisibility == StatusCenterVisibility . Always ||
9191 ( AppearanceSettingsService . StatusCenterVisibility == StatusCenterVisibility . DuringOngoingFileOperations && OngoingTasksViewModel . HasAnyItem ) ;
@@ -363,8 +363,8 @@ public NavigationToolbarViewModel()
363363 {
364364 switch ( e . PropertyName )
365365 {
366- case nameof ( GeneralSettingsService . EnableOmnibar ) :
367- OnPropertyChanged ( nameof ( EnableOmnibar ) ) ;
366+ case nameof ( GeneralSettingsService . EnableOmnibarDesign ) :
367+ OnPropertyChanged ( nameof ( EnableOmnibarDesign ) ) ;
368368 break ;
369369 }
370370 } ;
@@ -755,7 +755,7 @@ public void PathBoxItem_PreviewKeyDown(object sender, KeyRoutedEventArgs e)
755755
756756 public void SwitchToCommandPaletteMode ( )
757757 {
758- if ( EnableOmnibar )
758+ if ( EnableOmnibarDesign )
759759 {
760760 OmnibarCurrentSelectedModeName = OmnibarPaletteModeName ;
761761 }
@@ -773,7 +773,7 @@ public void SwitchToCommandPaletteMode()
773773
774774 public void SwitchToSearchMode ( )
775775 {
776- if ( EnableOmnibar )
776+ if ( EnableOmnibarDesign )
777777 {
778778 OmnibarCurrentSelectedModeName = OmnibarSearchModeName ;
779779 }
0 commit comments