From d6b20027604844ffeb39e92b1906d78417b7cb3b Mon Sep 17 00:00:00 2001 From: Ramiro Saenz Date: Mon, 15 May 2017 21:21:32 -0300 Subject: [PATCH] Fixed visibility of webviews in macOS Read more: https://github.com/electron/electron/issues/8505 --- app/ux/WebView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ux/WebView.js b/app/ux/WebView.js index 832daa80..3e721a92 100644 --- a/app/ux/WebView.js +++ b/app/ux/WebView.js @@ -168,7 +168,7 @@ Ext.define('Rambox.ux.WebView',{ ,autoEl: { tag: 'webview' ,src: me.record.get('url') - ,style: 'width:100%;height:100%;' + ,style: 'width:100%;height:100%;visibility:visible;' ,partition: 'persist:' + me.record.get('type') + '_' + me.id.replace('tab_', '') + (localStorage.getItem('id_token') ? '_' + Ext.decode(localStorage.getItem('profile')).user_id : '') ,plugins: 'true' ,allowtransparency: 'on'