From 92ed84def296537364faa0cfbe7e40a37eb3ca83 Mon Sep 17 00:00:00 2001 From: Alexey Pegov Date: Fri, 29 Oct 2010 14:38:42 +0400 Subject: [PATCH] fixed transparent border --- .../roots/ui/configuration/ConfigurationErrorsComponent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/idea-ui/src/com/intellij/openapi/roots/ui/configuration/ConfigurationErrorsComponent.java b/java/idea-ui/src/com/intellij/openapi/roots/ui/configuration/ConfigurationErrorsComponent.java index bbf11c63dfe4..ceec9ac6ff15 100644 --- a/java/idea-ui/src/com/intellij/openapi/roots/ui/configuration/ConfigurationErrorsComponent.java +++ b/java/idea-ui/src/com/intellij/openapi/roots/ui/configuration/ConfigurationErrorsComponent.java @@ -504,7 +504,7 @@ public class ConfigurationErrorsComponent extends JPanel implements Disposable, if (myModel.getSize() == 0) { setBorder(null); } else { - if (getBorder() == null) setBorder(BorderFactory.createCompoundBorder(BorderFactory.createEmptyBorder(5, 0, 5, 0), + if (getBorder() == null) setBorder(BorderFactory.createCompoundBorder(BorderFactory.createMatteBorder(5, 0, 5, 0, UIUtil.getPanelBackground()), BorderFactory.createLineBorder(UIUtil.getPanelBackgound().darker()))); }