Skip to content

Commit

Permalink
removed hidden overflow for schema compare splitview (microsoft#7104)
Browse files Browse the repository at this point in the history
Fixes issue where scrollbars wouldn't appear with vertical overflow in schema compare
  • Loading branch information
Elliot Boschwitz authored Oct 8, 2019
1 parent bcaa09e commit ecd76eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extensions/schema-compare/src/schemaCompareMainWindow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ export class SchemaCompareMainWindow {
this.resetButtons(ResetButtonState.afterCompareComplete);

if (this.comparisonResult.differences.length > 0) {
this.flexModel.addItem(this.splitView, { CSSStyles: { 'overflow': 'hidden', 'height': '100%' } });
this.flexModel.addItem(this.splitView);

// only enable generate script button if the target is a db
if (this.targetEndpointInfo.endpointType === mssql.SchemaCompareEndpointType.Database) {
Expand Down

0 comments on commit ecd76eb

Please sign in to comment.