Skip to content

Commit bb7b5f1

Browse files
authored
Tabs no longer fade out when size is shrinking (fix microsoft#182480) (microsoft#182481)
1 parent c7581b5 commit bb7b5f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/browser/parts/editor/tabsTitleControl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2114,7 +2114,7 @@ registerThemingParticipant((theme, collector) => {
21142114
// - in high contrast theme
21152115
// - if we have a contrast border (which draws an outline - https://github.com/microsoft/vscode/issues/109117)
21162116
// - on Safari (https://github.com/microsoft/vscode/issues/108996)
2117-
if (isHighContrast(theme.type) && !isSafari && !activeContrastBorderColor) {
2117+
if (!isHighContrast(theme.type) && !isSafari && !activeContrastBorderColor) {
21182118
const workbenchBackground = WORKBENCH_BACKGROUND(theme);
21192119
const editorBackgroundColor = theme.getColor(editorBackground);
21202120
const editorGroupHeaderTabsBackground = theme.getColor(EDITOR_GROUP_HEADER_TABS_BACKGROUND);

0 commit comments

Comments
 (0)