mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
don't use DrawFocusFrame for thin window moving rectangles
svn path=/trunk/; revision=9264
This commit is contained in:
parent
36599d2a2b
commit
29963dba5d
1 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: defwnd.c,v 1.134 2004/04/15 23:36:02 weiden Exp $
|
||||
/* $Id: defwnd.c,v 1.135 2004/05/01 11:43:52 weiden Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS user32.dll
|
||||
|
@ -480,7 +480,9 @@ UserDrawMovingFrame(HDC hdc, RECT *rect, BOOL thickframe, HRGN ClipRgn)
|
|||
UserDrawWindowFrame(hdc, rect, GetSystemMetrics(SM_CXFRAME), GetSystemMetrics(SM_CYFRAME));
|
||||
}
|
||||
else
|
||||
DrawFocusRect( hdc, rect );
|
||||
{
|
||||
UserDrawWindowFrame(hdc, rect, 1, 1);
|
||||
}
|
||||
|
||||
if(ClipRgn)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue