File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1073,6 +1073,11 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
1073
1073
return false ;
1074
1074
}
1075
1075
1076
+ // with the command center enabled, we should always show
1077
+ if ( this . configurationService . getValue < boolean > ( 'window.commandCenter' ) ) {
1078
+ return true ;
1079
+ }
1080
+
1076
1081
// macOS desktop does not need a title bar when full screen
1077
1082
if ( isMacintosh && isNative ) {
1078
1083
return ! this . state . runtime . fullscreen ;
@@ -1083,11 +1088,6 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
1083
1088
return true ;
1084
1089
}
1085
1090
1086
- // with the command center enabled, we should always show
1087
- if ( this . configurationService . getValue < boolean > ( 'window.commandCenter' ) ) {
1088
- return true ;
1089
- }
1090
-
1091
1091
// if WCO is visible, we have to show the title bar
1092
1092
if ( isWCOVisible ( ) ) {
1093
1093
return true ;
You can’t perform that action at this time.
0 commit comments