Changeset 49913 in webkit


Ignore:
Timestamp:
Oct 21, 2009 12:03:30 PM (15 years ago)
Author:
eric@webkit.org
Message:

2009-10-21 Alejandro G. Castro <alex@igalia.com>

Reviewed by Xan Lopez.

[GTK] Fixed the double click condition, it is not double click if
we move in just in one direction.
https://bugs.webkit.org/show_bug.cgi?id=30636

  • WebKitTools/DumpRenderTree/gtk/EventSender.cpp:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r49912 r49913  
     12009-10-21  Alejandro G. Castro  <alex@igalia.com>
     2
     3        Reviewed by Xan Lopez.
     4
     5        [GTK] Fixed the double click condition, it is not double click if
     6        we move in just in one direction.
     7        https://bugs.webkit.org/show_bug.cgi?id=30636
     8
     9        * WebKitTools/DumpRenderTree/gtk/EventSender.cpp:
     10
    1112009-10-21  Alejandro G. Castro  <alex@igalia.com>
    212
  • trunk/WebKitTools/DumpRenderTree/gtk/EventSender.cpp

    r49912 r49913  
    124124{
    125125    // FIXME: take the last clicked button number and the time of last click into account.
    126     if (lastClickPositionX != lastMousePositionX && lastClickPositionY != lastMousePositionY)
     126    if (lastClickPositionX != lastMousePositionX || lastClickPositionY != lastMousePositionY)
    127127        clickCount = 1;
    128128    else
Note: See TracChangeset for help on using the changeset viewer.