Some SystemDraw fixes, fixed another reason for key lag in theide

git-svn-id: svn://ultimatepp.org/upp/trunk@1160 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2009-05-12 07:43:36 +00:00
parent 6118f68704
commit dfe15080d7
11 changed files with 30 additions and 12 deletions

View file

@ -20,7 +20,7 @@ CtrlArray::Item::~Item()
void CtrlArray::Item::Paint(Draw& draw)
{
draw.DrawRect(draw.GetClip(), IsCursor() ? SWhiteGray : SColorFace());
draw.DrawRect(GetSize(), IsCursor() ? SWhiteGray : SColorFace());
}
void CtrlArray::Item::LeftDown(Point pt, dword keyflags)
@ -179,7 +179,7 @@ void CtrlArray::Layout()
void CtrlArray::Paint(Draw& draw)
{
draw.DrawRect(draw.GetClip(), SGray);
draw.DrawRect(GetSize(), SGray);
}
void CtrlArray::RightDown(Point pt, dword keyflags)