You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -16 +16,2 @@ import { IKeybindingService } from 'vs/platform/keybinding/common/keybinding';
@@ -465,6 +465,9 @@ index a822341..642bc70 100644
465
465
@@ -126 +127 @@ export class MenubarControl extends Disposable {
466
466
- if (isMacintosh || this.currentTitlebarStyleSetting !== 'custom') {
467
467
+ if ((isNative && isMacintosh) || this.currentTitlebarStyleSetting !== 'custom') {
468
+
@@ -138 +139 @@ export class MenubarControl extends Disposable {
469
+
- if (isMacintosh || this.currentTitlebarStyleSetting !== 'custom') {
470
+
+ if ((isNative && isMacintosh) || this.currentTitlebarStyleSetting !== 'custom') {
468
471
@@ -288 +289 @@ export class MenubarControl extends Disposable {
469
472
- if (!isMacintosh && this.currentTitlebarStyleSetting === 'custom') {
470
473
+ if (!(isNative && isMacintosh) && this.currentTitlebarStyleSetting === 'custom') {
@@ -841,13 +844,16 @@ index 48ef482..dc47f81 100644
841
844
- placeHolder: isMacintosh ? nls.localize('openRecentPlaceHolderMac', "Select to open (hold Cmd-key to open in new window)") : nls.localize('openRecentPlaceHolder', "Select to open (hold Ctrl-key to open in new window)"),
842
845
+ placeHolder: browser.isMacintosh ? nls.localize('openRecentPlaceHolderMac', "Select to open (hold Cmd-key to open in new window)") : nls.localize('openRecentPlaceHolder', "Select to open (hold Ctrl-key to open in new window)"),
0 commit comments