[Build tw] use regular color for status text of the multibuild view panel

GitOrigin-RevId: 520e284f3818d500bedd34faf3f24a633793c7dc
This commit is contained in:
Vladislav.Soroka
2020-06-15 14:50:21 +03:00
committed by intellij-monorepo-bot
parent 59ec2f60bb
commit d7862ddaaf
@@ -92,7 +92,7 @@ public class MultipleBuildsView implements BuildProgressListener, Disposable {
if (obj.statusMessage != null) {
SimpleColoredComponent statusComponent = new SimpleColoredComponent();
statusComponent.setIcon(EmptyIcon.ICON_16);
statusComponent.append(obj.statusMessage, SimpleTextAttributes.GRAY_ATTRIBUTES);
statusComponent.append(obj.statusMessage, SimpleTextAttributes.REGULAR_ATTRIBUTES);
panel.add(statusComponent, BorderLayout.SOUTH);
}
return panel;