Browse Source

Enable hide menu bar in Linux also

Because some distros of Linux handle the menu bar different than others,
we will show this option to all Linux versions.
Fixes #956
pull/1203/head
Ramiro Saenz 8 years ago
parent
commit
368f35e933
  1. 2
      app/view/preferences/Preferences.js

2
app/view/preferences/Preferences.js

@ -122,7 +122,7 @@ Ext.define('Rambox.view.preferences.Preferences',{
,name: 'hide_menu_bar' ,name: 'hide_menu_bar'
,boxLabel: locale['preferences[1]']+' (<code>Alt</code> key to display)' ,boxLabel: locale['preferences[1]']+' (<code>Alt</code> key to display)'
,value: config.hide_menu_bar ,value: config.hide_menu_bar
,hidden: process.platform !== 'win32' ,hidden: process.platform === 'darwin'
} }
,{ ,{
xtype: 'combo' xtype: 'combo'

Loading…
Cancel
Save