If I click "[edit]" on a section that is currently collapsed, it seems like nothing happens. If I click "[show]" the editor appears, but some users may just think their request failed. Clicking "[edit]" should automatically un-hide the section.
Fixed for the next build. In
clientscript/special_quickedit.js, find:
Code:
if (edithead.scrollIntoView)
{
edithead.scrollIntoView(true);
}
Add after:
Code:
if (vB_Section)
{
vB_Section.toggle(vB_QuickSection.postid, vB_QuickSection.sectid);
}