We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
display:none
1 parent e146c5f commit fe79871Copy full SHA for fe79871
src/vs/editor/browser/viewParts/overviewRuler/decorationsOverviewRuler.ts
@@ -318,8 +318,10 @@ export class DecorationsOverviewRuler extends ViewPart {
318
if (this._settings.overviewRulerLanes === 0) {
319
// overview ruler is off
320
this._domNode.setBackgroundColor(this._settings.backgroundColor ? this._settings.backgroundColor : '');
321
+ this._domNode.setDisplay('none');
322
return;
323
}
324
+ this._domNode.setDisplay('block');
325
const canvasWidth = this._settings.canvasWidth;
326
const canvasHeight = this._settings.canvasHeight;
327
const lineHeight = this._settings.lineHeight;
0 commit comments