From 730eda30c4ae858deb7abff13253b212ac1bac8a Mon Sep 17 00:00:00 2001 From: Sergey Malenkov Date: Wed, 25 Oct 2017 19:57:03 +0300 Subject: [PATCH] IDEA-181123 Docker. Run Configuration. "Command preview" and "Command line options" fields should not remain over the other windows by changing focus --- .../com/intellij/ui/components/fields/ExpandableTextField.java | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/platform-api/src/com/intellij/ui/components/fields/ExpandableTextField.java b/platform/platform-api/src/com/intellij/ui/components/fields/ExpandableTextField.java index 66b8f55f11c0..a279353b68ef 100644 --- a/platform/platform-api/src/com/intellij/ui/components/fields/ExpandableTextField.java +++ b/platform/platform-api/src/com/intellij/ui/components/fields/ExpandableTextField.java @@ -194,6 +194,7 @@ public class ExpandableTextField extends ExtendableTextField implements Expandab popup = JBPopupFactory.getInstance() .createComponentPopupBuilder(pane, area) + .setMayBeParent(true) // this creates a popup as a dialog with alwaysOnTop=false .setFocusable(true) .setRequestFocus(true) .setTitle(title)