]> source.dussan.org Git - vaadin-framework.git/commitdiff
Skip relative coordinates as long as they are unreliable
authorArtur Signell <artur.signell@itmill.com>
Mon, 21 Jun 2010 14:16:57 +0000 (14:16 +0000)
committerArtur Signell <artur.signell@itmill.com>
Mon, 21 Jun 2010 14:16:57 +0000 (14:16 +0000)
svn changeset:13839/svn branch:6.4

tests/src/com/vaadin/tests/layouts/TestLayoutClickListeners.java

index 68f001baea6c0bc9acd5fafadc14f40af45b8bee..5783d04e8c8f608ca2449c30c0c526a88bf4226f 100644 (file)
@@ -150,9 +150,9 @@ public class TestLayoutClickListeners extends AbstractTestCase {
         if (event.isDoubleClick()) {
             type = "double-click";
         }
-        log.log(layout + ": " + button + " " + type + " on " + target
-                + ", coordinates relative to the layout ("
-                + event.getRelativeX() + ", " + event.getRelativeY() + ")");
+        log.log(layout + ": " + button + " " + type + " on " + target);
+        // + ", coordinates relative to the layout ("
+        // + event.getRelativeX() + ", " + event.getRelativeY() + ")");
 
     }