From 0d37047c37b682f596fb999933da77e008d67a49 Mon Sep 17 00:00:00 2001 From: kisantia <31145923+kisantia@users.noreply.github.com> Date: Thu, 23 May 2019 13:41:59 -0700 Subject: [PATCH] Get rid of schema compare double scrollbar (#5571) * hide split view overflow to get rid of double scrollbar * change overflow to hidden --- extensions/schema-compare/src/schemaCompareResult.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/schema-compare/src/schemaCompareResult.ts b/extensions/schema-compare/src/schemaCompareResult.ts index 0ab61f3e5c..da5c51a7b2 100644 --- a/extensions/schema-compare/src/schemaCompareResult.ts +++ b/extensions/schema-compare/src/schemaCompareResult.ts @@ -252,7 +252,7 @@ export class SchemaCompareResult { } if (this.comparisonResult.differences.length > 0) { - this.flexModel.addItem(this.splitView); + this.flexModel.addItem(this.splitView, { CSSStyles: { 'overflow': 'hidden' } }); // only enable generate script button if the target is a db if (this.targetEndpointInfo.endpointType === azdata.SchemaCompareEndpointType.Database) {