1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 20:38:08 +01:00

Small fix

This commit is contained in:
dan
2000-10-03 12:44:05 +00:00
parent eeda795db1
commit b24b51b514

View File

@@ -1150,7 +1150,7 @@ handleActionEvents(XEvent *event, void *data)
case MotionNotify: case MotionNotify:
#ifdef behavior2 #ifdef behavior2
height = WMWidgetHeight(lPtr); height = WMWidgetHeight(lPtr);
if (lPtr->selectID && event->xmotion.y>=0 && event->xmotion.y<=height) { if (lPtr->selectID && event->xmotion.y>0 && event->xmotion.y<height) {
WMDeleteTimerHandler(lPtr->selectID); WMDeleteTimerHandler(lPtr->selectID);
lPtr->selectID = NULL; lPtr->selectID = NULL;
} }