Bug 582135 - Move the Web Console filter box to the right, r=gavin, a=mossop

This commit is contained in:
Patrick Walton 2010-07-30 08:30:55 -03:00
Родитель c82beeafed
Коммит 5b37d3c44a
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -1804,6 +1804,9 @@ HeadsUpDisplay.prototype = {
this.outputNode.setAttribute("class", "hud-output-node");
this.outputNode.setAttribute("flex", "1");
this.filterSpacer = this.makeXULNode("spacer");
this.filterSpacer.setAttribute("flex", "1");
this.filterBox = this.makeXULNode("textbox");
this.filterBox.setAttribute("class", "hud-filter-box");
this.filterBox.setAttribute("hudId", this.hudId);
@ -1885,6 +1888,7 @@ HeadsUpDisplay.prototype = {
}
toolbar.appendChild(btn);
}
toolbar.appendChild(this.filterSpacer);
toolbar.appendChild(this.filterBox);
toolbar.appendChild(this.filterClearButton);
return toolbar;