www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit c8ce422b95584f658fa4d9dc48d56acd5507fdce
parent 7046f894ffdda446e74e697a4a546c3772f17700
Author: Simon Kornblith <simon@simonster.com>
Date:   Mon,  7 Feb 2011 05:30:28 +0000

fix window resizing


Diffstat:
Mchrome/content/zotero/xpcom/integration.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/integration.js b/chrome/content/zotero/xpcom/integration.js @@ -1133,7 +1133,7 @@ Zotero.Integration.Session.prototype._displayDialog = function(url, options, io) if(this.doc) this.doc.cleanup(); var window = Components.classes["@mozilla.org/embedcomp/window-watcher;1"] .getService(Components.interfaces.nsIWindowWatcher) - .openWindow(null, url, '', 'chrome,centerscreen'+(options ? options : ""), (io ? io : null)); + .openWindow(null, url, '', 'chrome,centerscreen'+(options ? ','+options : ""), (io ? io : null)); while(!window.closed) Zotero.mainThread.processNextEvent(true); }