www

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

commit fbead5600bfaf5c2b65e94bf06b100b8dcbcad06
parent fbdb7d5526178e6ba6d14debcaa446eb53e64247
Author: Simon Kornblith <simon@simonster.com>
Date:   Tue, 31 May 2011 06:53:13 +0000

refine toolbar behavior


Diffstat:
Mchrome/content/zotero/zoteroPane.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/chrome/content/zotero/zoteroPane.js b/chrome/content/zotero/zoteroPane.js @@ -3613,8 +3613,8 @@ var ZoteroPane = new function() var paneComputedStyle = window.getComputedStyle(pane, null); var splitterComputedStyle = window.getComputedStyle(splitter, null); - toolbar.style.width = parseInt(paneComputedStyle.getPropertyValue("width")) - +parseInt(splitterComputedStyle.getPropertyValue("width"))+"px"; + toolbar.style.width = paneComputedStyle.getPropertyValue("width"); + toolbar.style.marginRight = splitterComputedStyle.getPropertyValue("width"); } }