@@ -55,6 +55,7 @@ public IRichCommand this[HotKey hotKey]
5555 public IRichCommand TogglePreviewPane => commands [ CommandCodes . TogglePreviewPane ] ;
5656 public IRichCommand ToggleDetailsPane => commands [ CommandCodes . ToggleDetailsPane ] ;
5757 public IRichCommand ToggleInfoPane => commands [ CommandCodes . ToggleInfoPane ] ;
58+ public IRichCommand ToggleToolbar => commands [ CommandCodes . ToggleToolbar ] ;
5859 public IRichCommand SelectAll => commands [ CommandCodes . SelectAll ] ;
5960 public IRichCommand InvertSelection => commands [ CommandCodes . InvertSelection ] ;
6061 public IRichCommand ClearSelection => commands [ CommandCodes . ClearSelection ] ;
@@ -191,7 +192,7 @@ public IRichCommand this[HotKey hotKey]
191192 public IRichCommand NextTab => commands [ CommandCodes . NextTab ] ;
192193 public IRichCommand CloseSelectedTab => commands [ CommandCodes . CloseSelectedTab ] ;
193194 public IRichCommand OpenNewPane => commands [ CommandCodes . OpenNewPane ] ;
194- public IRichCommand ClosePane => commands [ CommandCodes . ClosePane ] ;
195+ public IRichCommand CloseActivePane => commands [ CommandCodes . CloseActivePane ] ;
195196 public IRichCommand FocusLeftPane => commands [ CommandCodes . FocusLeftPane ] ;
196197 public IRichCommand FocusRightPane => commands [ CommandCodes . FocusRightPane ] ;
197198 public IRichCommand OpenFileLocation => commands [ CommandCodes . OpenFileLocation ] ;
@@ -238,6 +239,7 @@ public IEnumerator<IRichCommand> GetEnumerator() =>
238239 [ CommandCodes . TogglePreviewPane ] = new TogglePreviewPaneAction ( ) ,
239240 [ CommandCodes . ToggleDetailsPane ] = new ToggleDetailsPaneAction ( ) ,
240241 [ CommandCodes . ToggleInfoPane ] = new ToggleInfoPaneAction ( ) ,
242+ [ CommandCodes . ToggleToolbar ] = new ToggleToolbarAction ( ) ,
241243 [ CommandCodes . SelectAll ] = new SelectAllAction ( ) ,
242244 [ CommandCodes . InvertSelection ] = new InvertSelectionAction ( ) ,
243245 [ CommandCodes . ClearSelection ] = new ClearSelectionAction ( ) ,
@@ -374,7 +376,7 @@ public IEnumerator<IRichCommand> GetEnumerator() =>
374376 [ CommandCodes . NextTab ] = new NextTabAction ( ) ,
375377 [ CommandCodes . CloseSelectedTab ] = new CloseSelectedTabAction ( ) ,
376378 [ CommandCodes . OpenNewPane ] = new OpenNewPaneAction ( ) ,
377- [ CommandCodes . ClosePane ] = new ClosePaneAction ( ) ,
379+ [ CommandCodes . CloseActivePane ] = new CloseActivePaneAction ( ) ,
378380 [ CommandCodes . FocusLeftPane ] = new FocusLeftPaneAction ( ) ,
379381 [ CommandCodes . FocusRightPane ] = new FocusRightPaneAction ( ) ,
380382 [ CommandCodes . OpenFileLocation ] = new OpenFileLocationAction ( ) ,
0 commit comments