Fix Notebook Scrolling by Setting alwaysConsumeMouseWheel to False (#8686)

* flip alwaysConsumeMouseWheel to false for nb

* remove semicolon
This commit is contained in:
Chris LaFreniere
2019-12-16 13:17:02 -08:00
committed by GitHub
parent 5a01218691
commit 6e8a08c27a

View File

@@ -71,6 +71,9 @@ export class QueryTextEditor extends BaseTextEditor {
options.minimap = {
enabled: false
};
options.scrollbar = {
alwaysConsumeMouseWheel: false
};
options.overviewRulerLanes = 0;
options.overviewRulerBorder = false;
options.hideCursorInOverviewRuler = true;