Add log line to denote disabling hardware acceleration

This commit is contained in:
James Salter 2022-05-20 13:37:58 +01:00
parent 1ebe1b549a
commit f766cd0dca

View file

@ -852,6 +852,7 @@ app.commandLine.appendSwitch('disable-features', 'HardwareMediaKeyHandling,Media
// Disable hardware acceleration if the setting has been set.
if (store.get('disableHardwareAcceleration') === true) {
console.log("Disabling hardware acceleration.");
app.disableHardwareAcceleration();
}