mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[COMCTL32] toolbar: Draw checked and not hot buttons as checked, not hot. CORE-13592
Should be sent to wine.
This commit is contained in:
parent
a8bd06be98
commit
522601d050
1 changed files with 8 additions and 0 deletions
|
@ -1130,7 +1130,11 @@ TOOLBAR_DrawButton (const TOOLBAR_INFO *infoPtr, TBUTTON_INFO *btnPtr, HDC hdc,
|
|||
else if (tbcd.nmcd.uItemState & CDIS_SELECTED)
|
||||
stateId = TS_PRESSED;
|
||||
else if (tbcd.nmcd.uItemState & CDIS_CHECKED)
|
||||
#ifdef __REACTOS__
|
||||
stateId = (tbcd.nmcd.uItemState & CDIS_HOT) ? TS_HOTCHECKED : TS_CHECKED;
|
||||
#else
|
||||
stateId = (tbcd.nmcd.uItemState & CDIS_HOT) ? TS_HOTCHECKED : TS_HOT;
|
||||
#endif
|
||||
else if ((tbcd.nmcd.uItemState & CDIS_HOT)
|
||||
|| (drawSepDropDownArrow && btnPtr->bDropDownPressed))
|
||||
stateId = TS_HOT;
|
||||
|
@ -1156,7 +1160,11 @@ TOOLBAR_DrawButton (const TOOLBAR_INFO *infoPtr, TBUTTON_INFO *btnPtr, HDC hdc,
|
|||
else if (btnPtr->bDropDownPressed || (tbcd.nmcd.uItemState & CDIS_SELECTED))
|
||||
stateId = TS_PRESSED;
|
||||
else if (tbcd.nmcd.uItemState & CDIS_CHECKED)
|
||||
#ifdef __REACTOS__
|
||||
stateId = (tbcd.nmcd.uItemState & CDIS_HOT) ? TS_HOTCHECKED : TS_CHECKED;
|
||||
#else
|
||||
stateId = (tbcd.nmcd.uItemState & CDIS_HOT) ? TS_HOTCHECKED : TS_HOT;
|
||||
#endif
|
||||
else if (tbcd.nmcd.uItemState & CDIS_HOT)
|
||||
stateId = TS_HOT;
|
||||
|
||||
|
|
Loading…
Reference in a new issue