Changeset 19166 for trunk/WebCore/page/EventHandler.cpp
- Timestamp:
- 01/26/07 16:03:56 (2 years ago)
- Files:
-
- 1 modified
-
trunk/WebCore/page/EventHandler.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/page/EventHandler.cpp
r19158 r19166 748 748 else 749 749 swallowEvent = handleMousePressEvent(mev); 750 751 // Many AK widgets run their own event loops and consume events while the mouse is down.752 // When they finish, currentEvent is the mouseUp that they exited on. We need to update753 // the khtml state with this mouseUp, which khtml never saw.754 // If this event isn't a mouseUp, we assume that the mouseUp will be coming later. There755 // is a hole here if the widget consumes the mouseUp and subsequent events.756 if (lastEventIsMouseUp())757 m_mousePressed = false;758 750 } 759 751