- Timestamp:
- Feb 20, 2019, 10:06:56 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/branch-1-0/src/helpers/cctl_tooltip.c
r303 r446 813 813 } 814 814 815 if ( (ptlPointer.x != pttd->ptlPointerLast.x) 816 || (ptlPointer.y != pttd->ptlPointerLast.y) 815 if ( (ptlPointer.x < pttd->ptlPointerLast.x - 4) 816 || (ptlPointer.x > pttd->ptlPointerLast.x + 4) 817 || (ptlPointer.y < pttd->ptlPointerLast.y - 4) 818 || (ptlPointer.y > pttd->ptlPointerLast.y + 4) 817 819 || (pqmsg->msg == WM_BUTTON1DOWN) 818 820 || (pqmsg->msg == WM_BUTTON2DOWN) … … 1250 1252 WinQueryPointerPos(HWND_DESKTOP, &ptlPointer); 1251 1253 1252 if ( (ptlPointer.x == pttd->ptlPointerLast.x) 1253 && (ptlPointer.y == pttd->ptlPointerLast.y) 1254 if ( (ptlPointer.x >= pttd->ptlPointerLast.x - 4) 1255 && (ptlPointer.x <= pttd->ptlPointerLast.x + 4) 1256 && (ptlPointer.y >= pttd->ptlPointerLast.y - 4) 1257 && (ptlPointer.y <= pttd->ptlPointerLast.y + 4) 1254 1258 ) 1255 1259 {
Note:
See TracChangeset
for help on using the changeset viewer.