mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-08-02 06:06:59 -06:00
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:
parent
6118f68704
commit
dfe15080d7
11 changed files with 30 additions and 12 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue