Commit db10d0f1 authored by Sergey Ignatov's avatar Sergey Ignatov
Browse files

add back label to the bottom panel only in case of single generator

parent de38d17b
Branches unavailable Tags unavailable
No related merge requests found
Showing with 5 additions and 5 deletions
+5 -5
......@@ -57,7 +57,6 @@ import com.intellij.ui.popup.list.GroupedItemsListRenderer;
import com.intellij.util.ParameterizedRunnable;
import com.intellij.util.containers.ContainerUtil;
import com.intellij.util.containers.Convertor;
import com.intellij.util.containers.JBTreeTraverser;
import com.intellij.util.ui.JBUI;
import com.intellij.util.ui.MouseEventAdapter;
import com.intellij.util.ui.UIUtil;
......@@ -878,10 +877,11 @@ public class FlatWelcomeFrame extends JFrame implements IdeFrame, Disposable, Ac
selected.set(panel);
main.add(selected.get());
JBTreeTraverser<Component> traverser = UIUtil.uiTraverser(panel);
JPanel first = traverser.traverse().filter(JPanel.class).filter((it) -> BOTTOM_PANEL.equals(it.getName())).first();
if (back != null && first != null) {
first.add(back, BorderLayout.WEST);
if (singleProjectGenerator && back != null) {
JPanel first = UIUtil.uiTraverser(panel).traverse().filter(JPanel.class).filter((it) -> BOTTOM_PANEL.equals(it.getName())).first();
if (first != null) {
first.add(back, BorderLayout.WEST);
}
}
for (JButton button : UIUtil.findComponentsOfType(main, JButton.class)) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment