From 368f35e933e3df8a58cefec8247ddbccaeb6065e Mon Sep 17 00:00:00 2001 From: Ramiro Saenz Date: Tue, 3 Oct 2017 12:46:23 -0300 Subject: [PATCH] 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 --- app/view/preferences/Preferences.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/view/preferences/Preferences.js b/app/view/preferences/Preferences.js index 2d4c2c2d..fbbca456 100644 --- a/app/view/preferences/Preferences.js +++ b/app/view/preferences/Preferences.js @@ -122,7 +122,7 @@ Ext.define('Rambox.view.preferences.Preferences',{ ,name: 'hide_menu_bar' ,boxLabel: locale['preferences[1]']+' (Alt key to display)' ,value: config.hide_menu_bar - ,hidden: process.platform !== 'win32' + ,hidden: process.platform === 'darwin' } ,{ xtype: 'combo'