mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Fix Notebook Scrolling by Setting alwaysConsumeMouseWheel to False (#8686)
* flip alwaysConsumeMouseWheel to false for nb * remove semicolon
This commit is contained in:
@@ -71,6 +71,9 @@ export class QueryTextEditor extends BaseTextEditor {
|
|||||||
options.minimap = {
|
options.minimap = {
|
||||||
enabled: false
|
enabled: false
|
||||||
};
|
};
|
||||||
|
options.scrollbar = {
|
||||||
|
alwaysConsumeMouseWheel: false
|
||||||
|
};
|
||||||
options.overviewRulerLanes = 0;
|
options.overviewRulerLanes = 0;
|
||||||
options.overviewRulerBorder = false;
|
options.overviewRulerBorder = false;
|
||||||
options.hideCursorInOverviewRuler = true;
|
options.hideCursorInOverviewRuler = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user