Changeset 10127 for trunk/src


Ignore:
Timestamp:
May 30, 2003, 1:36:37 PM (22 years ago)
Author:
sandervl
Message:

PF: Listview selection draw code was not ok with OS/2 look

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/comctl32/listview.c

    r10125 r10127  
    35813581    INT   iBkMode = -1;
    35823582    INT nMixMode;
     3583    UINT  textoutOptions = ETO_OPAQUE | ETO_CLIPPED;
    35833584#endif
    35843585
     
    36733674        dwBkColor = GetBkColor(hdc);
    36743675        iBkMode = SetBkMode(hdc, TRANSPARENT);
     3676        textoutOptions &= ~ETO_OPAQUE;
    36753677      }
    36763678      else
     
    36943696   
    36953697        if (nmlvcd.clrTextBk != CLR_NONE)
     3698#ifdef __WIN32OS2__
     3699            ExtTextOutW(hdc, rcSelect.left, rcSelect.top, textoutOptions, &rcSelect, 0, 0, 0);
     3700#else
    36963701            ExtTextOutW(hdc, rcSelect.left, rcSelect.top, ETO_OPAQUE, &rcSelect, 0, 0, 0);
     3702#endif
    36973703        if(lprcFocus) *lprcFocus = rcSelect;
    36983704    }
Note: See TracChangeset for help on using the changeset viewer.