From f691efa3b440e93d212e671b79bbaf9a46c82858 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sat, 8 Aug 2009 00:50:42 +0000 Subject: [PATCH] Update the fill brush, in NtGdiFillPath. svn path=/trunk/; revision=42487 --- reactos/subsystems/win32/win32k/objects/path.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reactos/subsystems/win32/win32k/objects/path.c b/reactos/subsystems/win32/win32k/objects/path.c index 3b6a0833c33..efd511c8312 100644 --- a/reactos/subsystems/win32/win32k/objects/path.c +++ b/reactos/subsystems/win32/win32k/objects/path.c @@ -2298,6 +2298,9 @@ NtGdiFillPath(HDC hDC) if (pdcattr->ulDirty_ & (DIRTY_LINE | DC_PEN_DIRTY)) DC_vUpdateLineBrush(dc); + if (pdcattr->ulDirty_ & (DIRTY_FILL | DC_BRUSH_DIRTY)) + DC_vUpdateFillBrush(dc); + ret = PATH_FillPath( dc, pPath ); if ( ret ) {