Browse Source

Also apply workaround from 3264112 (last commit) to our notifications.

pull/3202/head
TheGoddessInari 6 years ago
parent
commit
26b0b1f78e
No known key found for this signature in database
GPG Key ID: 1209B1B7632D69A
  1. 5
      app/ux/WebView.js

5
app/ux/WebView.js

@ -552,7 +552,10 @@ Ext.define('Rambox.ux.WebView',{
function showWindowAndActivateTab(event) {
require('electron').remote.getCurrentWindow().show();
Ext.cq1('app-main').setActiveTab(me);
const tabPanel = Ext.cq1('app-main');
tabPanel.getActiveTab().down('component').el.dom.blur();
tabPanel.setActiveTab(me);
webview.focus();
}
function handleUpdateBadge(event) {

Loading…
Cancel
Save