diff options
author | Artur Signell <artur.signell@itmill.com> | 2010-06-21 14:16:57 +0000 |
---|---|---|
committer | Artur Signell <artur.signell@itmill.com> | 2010-06-21 14:16:57 +0000 |
commit | 481256bbdfc46149c87203d82f4c52fdfad07f29 (patch) | |
tree | 52ffb6d573bb111fa05240cbd5053c426e523828 /tests | |
parent | 230c8165f0025a1cb3476b533c586cd59b0911bb (diff) | |
download | vaadin-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.java | 6 |
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() + ")"); } |