diff options
author | Mika Murtojarvi <mika@vaadin.com> | 2014-08-06 19:22:30 +0300 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2014-08-07 09:50:54 +0000 |
commit | f45932b91bff06c33bfde64d6f86ebe888ea29fe (patch) | |
tree | 64519ce0b95852e3a170cd1ae5d63fc933a452d0 /client | |
parent | 8360a5bfd6803e69228bbd0abb6577f6d45c2931 (diff) | |
download | vaadin-framework-f45932b91bff06c33bfde64d6f86ebe888ea29fe.tar.gz vaadin-framework-f45932b91bff06c33bfde64d6f86ebe888ea29fe.zip |
Fix the closing of a popup DateField (#14086, #14375).
The popup is made non-modal.
Change-Id: Ia396ff1e2e88639b97c9f556d7d3866f76755436
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/ui/VPopupCalendar.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/ui/VPopupCalendar.java b/client/src/com/vaadin/client/ui/VPopupCalendar.java index 7dea959bb4..1474ad3b71 100644 --- a/client/src/com/vaadin/client/ui/VPopupCalendar.java +++ b/client/src/com/vaadin/client/ui/VPopupCalendar.java @@ -145,7 +145,7 @@ public class VPopupCalendar extends VTextualDate implements Field, } }); - popup = new VOverlay(true, true, true); + popup = new VOverlay(true, false, true); popup.setOwner(this); FlowPanel wrapper = new FlowPanel(); |