diff options
author | Marc Englund <marc@vaadin.com> | 2013-05-21 11:39:09 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2013-05-21 09:03:31 +0000 |
commit | b1390c580cf5e9ad6adbb6067007d03fb69a92cc (patch) | |
tree | 59b91640a6a52203209c533b27e6f13179d4e6ff /client | |
parent | 34e6c60a5a746c0306c3a84ae8d6c21dfd84d878 (diff) | |
download | vaadin-framework-b1390c580cf5e9ad6adbb6067007d03fb69a92cc.tar.gz vaadin-framework-b1390c580cf5e9ad6adbb6067007d03fb69a92cc.zip |
Don't autoclose PopupView when changing fragment, fixes #10530
Change-Id: I83607c97db8499c5e3c76e6d4735a93b0754d580
Ticket: 10530
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/ui/VPopupView.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client/src/com/vaadin/client/ui/VPopupView.java b/client/src/com/vaadin/client/ui/VPopupView.java index d983da2b62..737dc04968 100644 --- a/client/src/com/vaadin/client/ui/VPopupView.java +++ b/client/src/com/vaadin/client/ui/VPopupView.java @@ -102,6 +102,8 @@ public class VPopupView extends HTML implements Iterable<Widget> { }); popup.setAnimationEnabled(true); + + popup.setAutoHideOnHistoryEventsEnabled(false); } /** For internal use only. May be removed or replaced in the future. */ |