mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
Popups background incorrectly used in New Project Wizard
GitOrigin-RevId: 3fe131a27a598ea1a8f2897e4ad57166f0ce834b
This commit is contained in:
committed by
intellij-monorepo-bot
parent
7e340b59eb
commit
0f646dd473
@@ -130,7 +130,7 @@ public abstract class GroupedElementsRenderer implements Accessible {
|
||||
|
||||
@Override
|
||||
protected Color getBackground() {
|
||||
return ExperimentalUI.isNewUI() ? JBUI.CurrentTheme.Popup.BACKGROUND : UIUtil.getListBackground();
|
||||
return UIUtil.getListBackground();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -85,6 +85,11 @@ public class PopupListElementRenderer<E> extends GroupedItemsListRenderer<E> {
|
||||
return new GroupHeaderSeparator(labelInsets);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Color getBackground() {
|
||||
return ExperimentalUI.isNewUI() ? JBUI.CurrentTheme.Popup.BACKGROUND : super.getBackground();
|
||||
}
|
||||
|
||||
@Override
|
||||
protected JComponent createItemComponent() {
|
||||
createLabel();
|
||||
|
||||
Reference in New Issue
Block a user