Don't focus Zotero Pane window when opening a tab in background

This commit is contained in:
Martynas Bagdonas 2021-10-05 10:43:14 +03:00
parent 3c3eac43de
commit 645eb86cbc

View file

@ -1050,7 +1050,10 @@ class Reader {
}
};
}
reader._window.focus();
if (!openInBackground) {
reader._window.focus();
}
}
/**