Set showHamburgerMenu enabled by default on Linux (#2666)

This commit is contained in:
Ben Creasy 2018-03-17 16:59:25 -07:00 committed by CHaBou
parent 429710328a
commit 7838a10d1a
2 changed files with 3 additions and 4 deletions

View file

@ -51,9 +51,8 @@ module.exports = {
// custom CSS to embed in the terminal window
termCSS: '',
// set to `true` (without backticks and without quotes) if you're using a
// Linux setup that doesn't show native menus
// default: `false` on Linux, `true` on Windows, ignored on macOS
// if you're using a Linux setup which show native menus, set to false
// default: `true` on Linux, `true` on Windows, ignored on macOS
showHamburgerMenu: '',
// set to `false` (without backticks and without quotes) if you want to hide the minimize, maximize and close buttons

View file

@ -71,7 +71,7 @@ export default class Header extends React.PureComponent {
const {showHamburgerMenu, showWindowControls} = this.props;
const defaults = {
hambMenu: process.platform === 'win32', // show by default on windows
hambMenu: !this.props.isMac, // show by default on windows and linux
winCtrls: !this.props.isMac // show by default on Windows and Linux
};