Skip to content

Commit

Permalink
on Linux default to "showHamburgerMenu": true
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Creasy committed Mar 4, 2018
1 parent bf2d6ea commit 7c753d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions app/config/config-default.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/components/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default class Header extends 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
};

Expand Down

0 comments on commit 7c753d1

Please sign in to comment.