@@ -363,16 +363,19 @@ define(function (require, exports, module) {
363363 $bottomPanelContainer = $ ( '<div id="bottom-panel-container" class="vert-resizable top-resizer"></div>' ) ;
364364 let $bottomPanelTabBar = $ ( '<div id="bottom-panel-tab-bar"></div>' ) ;
365365 let $bottomPanelTabsOverflow = $ ( '<div class="bottom-panel-tabs-overflow"></div>' ) ;
366+ let $addPanelBtn = $ ( '<span class="bottom-panel-add-btn"><i class="fa-solid fa-plus"></i></span>' )
367+ . attr ( 'title' , Strings . BOTTOM_PANEL_OPEN_PANEL ) ;
366368 let $tabBarActions = $ ( '<div class="bottom-panel-tab-bar-actions"></div>' ) ;
367369 $tabBarActions . append (
368- $ ( '<span class="bottom-panel-maximize -btn"><i class="fa-solid fa-expand "></i></span>' )
369- . attr ( 'title' , Strings . BOTTOM_PANEL_MAXIMIZE )
370+ $ ( '<span class="bottom-panel-hide -btn"><i class="fa-solid fa-minus "></i></span>' )
371+ . attr ( 'title' , Strings . BOTTOM_PANEL_MINIMIZE )
370372 ) ;
371373 $tabBarActions . append (
372- $ ( '<span class="bottom-panel-hide -btn"><i class="fa-solid fa-chevron-down "></i></span>' )
373- . attr ( 'title' , Strings . BOTTOM_PANEL_HIDE )
374+ $ ( '<span class="bottom-panel-maximize -btn"><i class="fa-regular fa-square "></i></span>' )
375+ . attr ( 'title' , Strings . BOTTOM_PANEL_MAXIMIZE )
374376 ) ;
375377 $bottomPanelTabBar . append ( $bottomPanelTabsOverflow ) ;
378+ $bottomPanelTabBar . append ( $addPanelBtn ) ;
376379 $bottomPanelTabBar . append ( $tabBarActions ) ;
377380 $bottomPanelContainer . append ( $bottomPanelTabBar ) ;
378381 $bottomPanelContainer . insertBefore ( "#status-bar" ) ;
@@ -402,6 +405,11 @@ define(function (require, exports, module) {
402405 _statusBarToggleInProgress = false ;
403406 } ) ;
404407
408+ // "+" button opens the quick access / default panel
409+ $addPanelBtn . on ( "click" , function ( ) {
410+ _showDefaultPanel ( ) ;
411+ } ) ;
412+
405413 // Make the container resizable (not individual panels)
406414 Resizer . makeResizable ( $bottomPanelContainer [ 0 ] , Resizer . DIRECTION_VERTICAL , Resizer . POSITION_TOP ,
407415 200 , false , undefined , true ) ;
0 commit comments