mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 01:24:38 +00:00
Text alignment should be TA_TOP for a new DC
svn path=/trunk/; revision=3523
This commit is contained in:
parent
db1b121d20
commit
dfcf977473
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
/* $Id: dc.c,v 1.40 2002/09/18 23:56:48 dwelch Exp $
|
||||
/* $Id: dc.c,v 1.41 2002/09/19 22:41:57 jfilby Exp $
|
||||
*
|
||||
* DC.C - Device context functions
|
||||
*
|
||||
|
@ -343,7 +343,7 @@ HDC STDCALL W32kCreateDC(LPCWSTR Driver,
|
|||
|
||||
NewDC->w.hVisRgn = W32kCreateRectRgn(0, 0, 640, 480);
|
||||
W32kSetTextColor(hNewDC, RGB(0, 0, 0));
|
||||
W32kSetTextAlign(hNewDC, TA_BASELINE);
|
||||
W32kSetTextAlign(hNewDC, TA_TOP);
|
||||
DC_ReleasePtr( hNewDC );
|
||||
|
||||
return hNewDC;
|
||||
|
|
Loading…
Reference in a new issue