mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-09-19 22:19:36 +02:00
fix: configure scrollbar settings for Monaco Editor
This commit is contained in:
@@ -102,8 +102,12 @@ export default function ToolCodeInput({
|
|||||||
value={value}
|
value={value}
|
||||||
onChange={(value) => onChange(value ?? '')}
|
onChange={(value) => onChange(value ?? '')}
|
||||||
options={{
|
options={{
|
||||||
overviewRuler: {
|
scrollbar: {
|
||||||
enabled: false
|
vertical: 'visible',
|
||||||
|
horizontal: 'visible',
|
||||||
|
verticalScrollbarSize: 10,
|
||||||
|
horizontalScrollbarSize: 10,
|
||||||
|
alwaysConsumeMouseWheel: false
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
Reference in New Issue
Block a user