Ignore:
Timestamp:
Sep 19, 2003, 8:50:25 PM (22 years ago)
Author:
umoeller
Message:

Buncha fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/cctl_tooltip.c

    r238 r255  
    218218 *@@added V0.9.0 [umoeller]
    219219 *@@changed V0.9.12 (2001-04-28) [umoeller]: added mutex protection
     220 *@@changed V1.0.2 (2003-07-26) [pr]: fixed tooltip moving with mouse from xcenters @@fixes 455
    220221 */
    221222
     
    243244                case WM_BUTTON3DOWN:
    244245                case WM_BUTTON3UP:
     246                case WM_MOUSELEAVE: // V1.0.2 (2003-07-26) [pr]: @@fixes 455
    245247                {
    246248                    QMSG qmsg;
     
    773775 *@@added V0.9.13 (2001-06-21) [umoeller]
    774776 *@@changed V0.9.19 (2002-05-14) [umoeller]: fixed bad stop timer, thanks yuri
     777 *@@changed V1.0.2 (2003-07-26) [pr]: fixed tooltip moving with mouse from xcenters @@fixes 455
    775778 */
    776779
     
    808811             || (pqmsg->msg == WM_BUTTON2DOWN)
    809812             || (pqmsg->msg == WM_BUTTON3DOWN)
     813             || (pqmsg->msg == WM_MOUSELEAVE) // V1.0.2 (2003-07-26) [pr]: @@fixes 455
    810814           )
    811815        {
     
    832836            if (    (pttd->ptiMouseOver)
    833837                 && (pttd->fIsActive)
     838                 && (pqmsg->msg != WM_MOUSELEAVE) // V1.0.2 (2003-07-26) [pr]: @@fixes 455
    834839               )
    835840            {
Note: See TracChangeset for help on using the changeset viewer.