Explicitly enable smooth scrolling is setting is disabled
This commit is contained in:
parent
4240bf9e35
commit
66e96adacf
|
@ -60,6 +60,8 @@ if (!isDev) {
|
||||||
|
|
||||||
if (doc !== null && doc.value) {
|
if (doc !== null && doc.value) {
|
||||||
app.commandLine.appendSwitch('disable-smooth-scrolling')
|
app.commandLine.appendSwitch('disable-smooth-scrolling')
|
||||||
|
} else {
|
||||||
|
app.commandLine.appendSwitch('enable-smooth-scrolling')
|
||||||
}
|
}
|
||||||
|
|
||||||
createWindow()
|
createWindow()
|
||||||
|
@ -92,6 +94,8 @@ if (!isDev) {
|
||||||
|
|
||||||
if (doc !== null && doc.value) {
|
if (doc !== null && doc.value) {
|
||||||
app.commandLine.appendSwitch('disable-smooth-scrolling')
|
app.commandLine.appendSwitch('disable-smooth-scrolling')
|
||||||
|
} else {
|
||||||
|
app.commandLine.appendSwitch('enable-smooth-scrolling')
|
||||||
}
|
}
|
||||||
|
|
||||||
createWindow()
|
createWindow()
|
||||||
|
|
Loading…
Reference in New Issue