Ignore:
Timestamp:
Feb 19, 2004, 4:03:55 PM (22 years ago)
Author:
sandervl
Message:

RedrawWindow; wrong check for update region when clearing WM_ERASEBKGND flag.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/dc.cpp

    r10461 r10473  
    1 /* $Id: dc.cpp,v 1.124 2004-02-16 12:00:25 sandervl Exp $ */
     1/* $Id: dc.cpp,v 1.125 2004-02-19 15:03:55 sandervl Exp $ */
    22
    33/*
     
    12741274        //Don't clear erase background flag if the window is
    12751275        //already (partly) invalidated
    1276         if (!WinQueryUpdateRect (hwnd, NULL)) {
     1276        if (WinQueryUpdateRect (hwnd, NULL)) {
    12771277            dprintf(("RDW_INVALIDATE: no update rectangle, disable %x WM_ERASEBKGND", wnd->getWindowHandle()));
    12781278            wnd->setEraseBkgnd(FALSE);
Note: See TracChangeset for help on using the changeset viewer.