Merge pull request #750 from mattermost/jasonblais-patch-1

Switch default GPU acceleration to false
This commit is contained in:
Jason Blais
2018-04-02 10:14:02 -04:00
committed by GitHub
2 changed files with 2 additions and 3 deletions

View File

@@ -567,8 +567,7 @@ const SettingsPage = createReactClass({
>
{'Use GPU hardware acceleration'}
<HelpBlock>
{'Disable this setting if you see a blank page after logging in to Mattermost.'}
{' If enabled, the Mattermost UI is rendered more efficiently but can cause stability issues for some systems.'}
{'If enabled, Mattermost UI is rendered more efficiently but can lead to decreased stability for some systems.'}
{' Setting takes affect after restarting the app.'}
</HelpBlock>
</Checkbox>

View File

@@ -15,7 +15,7 @@ const defaultPreferences = {
},
showUnreadBadge: true,
useSpellChecker: true,
enableHardwareAcceleration: true,
enableHardwareAcceleration: false,
};
module.exports = defaultPreferences;