refine toolbar behavior

This commit is contained in:
Simon Kornblith 2011-05-31 06:53:13 +00:00
parent fbdb7d5526
commit fbead5600b

View file

@ -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");
}
}