Add option to disable hardware acceleration

This commit is contained in:
TC
2020-12-02 22:07:15 +01:00
parent 8f3e165917
commit ef9cd8cd24
3 changed files with 19 additions and 0 deletions

View File

@ -15,6 +15,7 @@ const store = new Store({
autoUpdates: true,
hideMenu: false,
startAtLogin: false,
disableHardwareAcceleration: false,
},
},
});
@ -34,4 +35,6 @@ module.exports = {
autoUpdate: () => store.get("options.autoUpdates"),
hideMenu: () => store.get("options.hideMenu"),
startAtLogin: () => store.get("options.startAtLogin"),
disableHardwareAcceleration: () =>
store.get("options.disableHardwareAcceleration"),
};