Commit 02631adc authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

Revert "gdi32: Reselect objects into the DC only if scaling factors change.".

This reverts commit 3cbd9639.
parent 7976d993
......@@ -315,9 +315,8 @@ void DC_UpdateXforms( DC *dc )
/* Reselect the font and pen back into the dc so that the size
gets updated. */
if ((oldworld2vport.eM11 != dc->xformWorld2Vport.eM11 ||
oldworld2vport.eM22 != dc->xformWorld2Vport.eM22) &&
!GdiIsMetaFileDC(dc->hSelf))
if (memcmp(&oldworld2vport, &dc->xformWorld2Vport, sizeof(oldworld2vport)) &&
!GdiIsMetaFileDC(dc->hSelf))
{
SelectObject(dc->hSelf, GetCurrentObject(dc->hSelf, OBJ_FONT));
SelectObject(dc->hSelf, GetCurrentObject(dc->hSelf, OBJ_PEN));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment