summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorArtur Signell <artur.signell@itmill.com>2010-06-21 14:16:57 +0000
committerArtur Signell <artur.signell@itmill.com>2010-06-21 14:16:57 +0000
commit481256bbdfc46149c87203d82f4c52fdfad07f29 (patch)
tree52ffb6d573bb111fa05240cbd5053c426e523828 /tests
parent230c8165f0025a1cb3476b533c586cd59b0911bb (diff)
downloadvaadin-framework-481256bbdfc46149c87203d82f4c52fdfad07f29.tar.gz
vaadin-framework-481256bbdfc46149c87203d82f4c52fdfad07f29.zip
Skip relative coordinates as long as they are unreliable
svn changeset:13839/svn branch:6.4
Diffstat (limited to 'tests')
-rw-r--r--tests/src/com/vaadin/tests/layouts/TestLayoutClickListeners.java6
1 files 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() + ")");
}