Word plugin installer: don't show progress window on repeat attempts to install (#4579)
Some checks are pending
CI / Build, Upload, Test (push) Waiting to run
Some checks are pending
CI / Build, Upload, Test (push) Waiting to run
This commit is contained in:
parent
3d0b5d0099
commit
06eb1d7341
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ ZoteroPluginInstaller.prototype = {
|
||||||
}
|
}
|
||||||
installationInProgress = true;
|
installationInProgress = true;
|
||||||
try {
|
try {
|
||||||
if (!this._addon.DISABLE_PROGRESS_WINDOW) {
|
if (!this._addon.DISABLE_PROGRESS_WINDOW && !this.failSilently) {
|
||||||
this._progressWindow = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
|
this._progressWindow = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
|
||||||
.getService(Components.interfaces.nsIWindowWatcher)
|
.getService(Components.interfaces.nsIWindowWatcher)
|
||||||
.openWindow(null, "chrome://zotero/content/progressWindow.xhtml", '',
|
.openWindow(null, "chrome://zotero/content/progressWindow.xhtml", '',
|
||||||
|
|
Loading…
Reference in a new issue