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

View File

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