Skip to content

Commit

Permalink
microsoft#22622 - removed ScollbarVisibility reference
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristian Hosu committed Jun 14, 2017
1 parent dd4d5a7 commit 5000246
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/vs/workbench/parts/debug/electron-browser/debugHover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ import { Expression } from 'vs/workbench/parts/debug/common/debugModel';
import { VariablesRenderer, renderExpressionValue, VariablesDataSource } from 'vs/workbench/parts/debug/electron-browser/debugViewer';
import { IListService } from 'vs/platform/list/browser/listService';
import { DomScrollableElement } from 'vs/base/browser/ui/scrollbar/scrollableElement';
import { ScrollbarVisibility } from 'vs/base/common/scrollable';
import { attachListStyler, attachStylerCallback } from 'vs/platform/theme/common/styler';
import { IThemeService } from 'vs/platform/theme/common/themeService';
import { editorHoverBackground, editorHoverBorder } from 'vs/platform/theme/common/colorRegistry';
Expand Down Expand Up @@ -63,7 +62,7 @@ export class DebugHoverWidget implements IContentWidget {
this.valueContainer = $('.value');
this.valueContainer.tabIndex = 0;
this.valueContainer.setAttribute('role', 'tooltip');
this.scrollbar = new DomScrollableElement(this.valueContainer, { canUseTranslate3d: false, horizontal: ScrollbarVisibility.Auto, vertical: ScrollbarVisibility.Auto });
this.scrollbar = new DomScrollableElement(this.valueContainer, { canUseTranslate3d: false });
this.domNode.appendChild(this.scrollbar.getDomNode());
this.toDispose.push(this.scrollbar);

Expand Down

0 comments on commit 5000246

Please sign in to comment.