From 5de1961c8e682f262f618059e00ab4b967a11c11 Mon Sep 17 00:00:00 2001 From: Sandeep Somavarapu Date: Thu, 19 Dec 2019 19:44:42 +0100 Subject: [PATCH] enable small layout with height --- src/vs/workbench/contrib/markers/browser/markersView.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/contrib/markers/browser/markersView.ts b/src/vs/workbench/contrib/markers/browser/markersView.ts index 1b586f7cb21..20c6c153a44 100644 --- a/src/vs/workbench/contrib/markers/browser/markersView.ts +++ b/src/vs/workbench/contrib/markers/browser/markersView.ts @@ -171,7 +171,7 @@ export class MarkersView extends ViewPane implements IMarkerFilterController { public layoutBody(height: number, width: number): void { const wasSmallLayout = this.isSmallLayout; - this.isSmallLayout = width < 600; + this.isSmallLayout = width < 600 && height > 100; if (this.isSmallLayout !== wasSmallLayout) { this.updateActions(); if (this.filterActionBar) { -- GitLab