Browse Source

Fixed minor bug

pull/2255/head
Ramiro Saenz 6 years ago
parent
commit
e00c86ef57
  1. 2
      app/ux/WebView.js

2
app/ux/WebView.js

@ -525,8 +525,8 @@ Ext.define('Rambox.ux.WebView',{
require('electron').remote.getCurrentWindow().show(); require('electron').remote.getCurrentWindow().show();
var tabPanel = Ext.cq1('app-main'); var tabPanel = Ext.cq1('app-main');
// Temp fix missing cursor after upgrade to electron 3.x + // Temp fix missing cursor after upgrade to electron 3.x +
tabPanel.getActiveTab().getWebView().blur();
tabPanel.setActiveTab(me); tabPanel.setActiveTab(me);
tabPanel.getActiveTab().getWebView().blur();
tabPanel.getActiveTab().getWebView().focus(); tabPanel.getActiveTab().getWebView().focus();
} }
}); });

Loading…
Cancel
Save