Skip to content

Commit

Permalink
fixes #73587
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomoreno committed May 28, 2019
1 parent 43dad0c commit a2cd0de
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/vs/base/browser/ui/scrollbar/abstractScrollbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,12 @@ export abstract class AbstractScrollbar extends Widget {
this._sliderMouseDown(e, () => { /*nothing to do*/ });
}
});

this.onclick(this.slider.domNode, e => {
if (e.leftButton) {
e.stopPropagation();
}
});
}

// ----------------- Update state
Expand Down

0 comments on commit a2cd0de

Please sign in to comment.