[Webkit-unassigned] [Bug 30636] New: [GTK] Double click detection in EventSender DRT is not correct

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Oct 21 10:57:10 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=30636

           Summary: [GTK] Double click detection in EventSender DRT is not
                    correct
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
        OS/Version: Linux
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: WebKit Gtk
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: alex at igalia.com


It is something like this:

    if (lastClickPositionX != lastMousePositionX && lastClickPositionY !=
lastMousePositionY)

In my opinioin it should be something like this:

    if (lastClickPositionX != lastMousePositionX || lastClickPositionY !=
lastMousePositionY)

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list