From 481256bbdfc46149c87203d82f4c52fdfad07f29 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Mon, 21 Jun 2010 14:16:57 +0000 Subject: [PATCH] Skip relative coordinates as long as they are unreliable svn changeset:13839/svn branch:6.4 --- .../com/vaadin/tests/layouts/TestLayoutClickListeners.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/src/com/vaadin/tests/layouts/TestLayoutClickListeners.java b/tests/src/com/vaadin/tests/layouts/TestLayoutClickListeners.java index 68f001baea..5783d04e8c 100644 --- a/tests/src/com/vaadin/tests/layouts/TestLayoutClickListeners.java +++ b/tests/src/com/vaadin/tests/layouts/TestLayoutClickListeners.java @@ -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() + ")"); } -- 2.39.5