feat: Add option to disable smooth scrolling (#255)

This commit is contained in:
Michal Vaniš
2023-11-24 23:14:23 +01:00
committed by GitHub
parent 49e0411be6
commit 96b0652a06
3 changed files with 8 additions and 0 deletions

View File

@@ -24,6 +24,12 @@ if (IS_DEV) {
process.env.VENCORD_USER_DATA_DIR = DATA_DIR;
function init() {
const { disableSmoothScroll } = Settings.store;
if (disableSmoothScroll) {
app.commandLine.appendSwitch("disable-smooth-scrolling");
}
// work around chrome 66 disabling autoplay by default
app.commandLine.appendSwitch("autoplay-policy", "no-user-gesture-required");