aboutsummaryrefslogtreecommitdiffstats
path: root/client/src/main
diff options
context:
space:
mode:
authorAnastasia Smirnova <anasmi@utu.fi>2018-04-09 10:56:46 +0300
committerTeemu Suo-Anttila <tsuoanttila@users.noreply.github.com>2018-04-09 10:56:46 +0300
commitfb712d074ce91f743d74623021566c1e999d5b62 (patch)
tree7672bc8bdc17c2e6de027c505a46f906617908c4 /client/src/main
parent8d0afd8690239688514db52e16d37ef77fd5ed1a (diff)
downloadvaadin-framework-fb712d074ce91f743d74623021566c1e999d5b62.tar.gz
vaadin-framework-fb712d074ce91f743d74623021566c1e999d5b62.zip
Ensure that popup is closed in Tabsheet (#10738)
Diffstat (limited to 'client/src/main')
-rw-r--r--client/src/main/java/com/vaadin/client/ui/popupview/PopupViewConnector.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/main/java/com/vaadin/client/ui/popupview/PopupViewConnector.java b/client/src/main/java/com/vaadin/client/ui/popupview/PopupViewConnector.java
index b87afda5fc..eecc6ac57b 100644
--- a/client/src/main/java/com/vaadin/client/ui/popupview/PopupViewConnector.java
+++ b/client/src/main/java/com/vaadin/client/ui/popupview/PopupViewConnector.java
@@ -135,7 +135,7 @@ public class PopupViewConnector extends AbstractHasComponentsConnector
} else {
// The popup shouldn't be visible, try to hide it.
- popup.hide();
+ popup.hide(false,false,false);
}
}