diff options
author | Denis Anisimov <denis@vaadin.com> | 2014-12-10 18:55:26 +0200 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2015-02-02 08:37:16 +0000 |
commit | e052d648749312225098093a53dc7a19ea870cfd (patch) | |
tree | 733bdba0f4471051ae29563ec2e58e0255d2b7f8 /client | |
parent | 15c4b00eee1b0aa19e13ffdc103de677be7c2d67 (diff) | |
download | vaadin-framework-e052d648749312225098093a53dc7a19ea870cfd.tar.gz vaadin-framework-e052d648749312225098093a53dc7a19ea870cfd.zip |
Avoid client side exception using keyboard navigation (#15343).
Change-Id: Ibed97b23de72007a6ffe5450bd8c3f271447f8d1
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/ui/VTree.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/com/vaadin/client/ui/VTree.java b/client/src/com/vaadin/client/ui/VTree.java index 6539eb49a9..8729de4a43 100644 --- a/client/src/com/vaadin/client/ui/VTree.java +++ b/client/src/com/vaadin/client/ui/VTree.java @@ -1737,8 +1737,8 @@ public class VTree extends FocusElementPanel implements VHasDropHandler, selectNode(node, true); } } + showTooltipForKeyboardNavigation(node); } - showTooltipForKeyboardNavigation(node); return true; } @@ -1763,8 +1763,8 @@ public class VTree extends FocusElementPanel implements VHasDropHandler, selectNode(node, true); } } + showTooltipForKeyboardNavigation(node); } - showTooltipForKeyboardNavigation(node); return true; } |