CtrlLib: Fixed ArrayCtrl Separator issue displaying TIP (#437)

git-svn-id: svn://ultimatepp.org/upp/trunk@5847 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2013-02-20 19:33:52 +00:00
parent b6dfdbf591
commit 3bc3e2cbfc
2 changed files with 6 additions and 0 deletions

View file

@ -1886,6 +1886,9 @@ struct ArrayCtrlSeparatorDisplay : Display {
w.DrawRect(r.left, y, r.GetWidth(), 1, SColorShadow());
w.DrawRect(r.left, y + 1, r.GetWidth(), 1, SColorLight());
}
virtual Size GetStdSize(const Value& q) const {
return Size(0, 2);
}
};
void ArrayCtrl::AddSeparator()