Skip to content

Commit

Permalink
fix #5819: [debug] Superfluous scrollbars
Browse files Browse the repository at this point in the history
Signed-off-by: xieyuanhu <xieyuanhuata@163.com>
  • Loading branch information
xieyuanhuata authored and akosyakov committed Aug 9, 2019
1 parent 66976d0 commit 441ce8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export class DebugConfigurationWidget extends ReactWidget {
this.toDispose.push(this.manager.onDidChange(() => this.update()));
this.toDispose.push(this.workspaceService.onWorkspaceChanged(() => this.update()));
this.toDispose.push(this.workspaceService.onWorkspaceLocationChanged(() => this.update()));
this.scrollOptions = undefined;
this.update();
}

Expand Down
1 change: 1 addition & 0 deletions packages/debug/src/browser/view/debug-toolbar-widget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export class DebugToolBar extends ReactWidget {
this.addClass('debug-toolbar');
this.toDispose.push(this.model);
this.toDispose.push(this.model.onDidChange(() => this.update()));
this.scrollOptions = undefined;
this.update();
}

Expand Down

0 comments on commit 441ce8e

Please sign in to comment.