File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -1078,6 +1078,11 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
1078
1078
return true ;
1079
1079
}
1080
1080
1081
+ // with the command center enabled, we should always show
1082
+ if ( this . configurationService . getValue < boolean > ( 'window.commandCenter' ) ) {
1083
+ return true ;
1084
+ }
1085
+
1081
1086
// if WCO is visible, we have to show the title bar
1082
1087
if ( isWCOVisible ( ) ) {
1083
1088
return true ;
Original file line number Diff line number Diff line change 159
159
flex-wrap : nowrap;
160
160
}
161
161
162
+ .monaco-workbench .web .part .titlebar > .titlebar-container > .menubar {
163
+ margin-left : 4px ;
164
+ }
165
+
162
166
.monaco-workbench .part .titlebar > .titlebar-container .counter-zoom > .menubar .menubar-menu-button > .menubar-menu-items-holder .monaco-menu-container {
163
167
zoom : var (--zoom-factor );
164
168
}
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ export class TitlebarPart extends Part implements ITitleService {
236
236
this . dragRegion = prepend ( this . rootContainer , $ ( 'div.titlebar-drag-region' ) ) ;
237
237
238
238
// App Icon (Native Windows/Linux and Web)
239
- if ( ! isMacintosh || isWeb ) {
239
+ if ( ! isMacintosh && ! isWeb ) {
240
240
this . appIcon = prepend ( this . rootContainer , $ ( 'a.window-appicon' ) ) ;
241
241
242
242
// Web-only home indicator and menu
You can’t perform that action at this time.
0 commit comments