From 876a5e0804fae3679fcc5f323b1a7169126cf6fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maurice=20Schleu=C3=9Finger?= Date: Tue, 20 Feb 2018 12:41:38 +0100 Subject: [PATCH] Fix https://github.com/saenzramiro/rambox/issues/1464 by hiding enable_hidpi_support on non-Windows platforms. --- app/view/preferences/Preferences.js | 1 + 1 file changed, 1 insertion(+) diff --git a/app/view/preferences/Preferences.js b/app/view/preferences/Preferences.js index 33a7a682..436ebe77 100644 --- a/app/view/preferences/Preferences.js +++ b/app/view/preferences/Preferences.js @@ -234,6 +234,7 @@ Ext.define('Rambox.view.preferences.Preferences',{ ,name: 'enable_hidpi_support' ,boxLabel: locale['preferences[8]'] ,value: config.enable_hidpi_support + ,hidden: process.platform !== 'win32' } ,{ xtype: 'fieldset'