diff --git a/java/compiler/impl/src/com/intellij/compiler/impl/ProblemsViewImpl.java b/java/compiler/impl/src/com/intellij/compiler/impl/ProblemsViewImpl.java index 764d1a23fc6b..6e73e48ad8c6 100644 --- a/java/compiler/impl/src/com/intellij/compiler/impl/ProblemsViewImpl.java +++ b/java/compiler/impl/src/com/intellij/compiler/impl/ProblemsViewImpl.java @@ -3,6 +3,7 @@ package com.intellij.compiler.impl; import com.intellij.compiler.ProblemsView; import com.intellij.icons.AllIcons; +import com.intellij.ide.IdeBundle; import com.intellij.ide.errorTreeView.ErrorTreeElement; import com.intellij.ide.errorTreeView.ErrorTreeElementKind; import com.intellij.ide.errorTreeView.ErrorViewStructure; @@ -132,6 +133,7 @@ final class ProblemsViewImpl extends ProblemsView { boolean active = panel.getErrorViewStructure().hasMessages( EnumSet.of(ErrorTreeElementKind.ERROR, ErrorTreeElementKind.WARNING, ErrorTreeElementKind.NOTE)); toolWindow.setIcon(active ? AllIcons.Toolwindows.Problems : AllIcons.Toolwindows.ProblemsEmpty); + toolWindow.setStripeTitle(IdeBundle.message("toolwindow.stripe.Problems")); } @Override diff --git a/platform/platform-api/resources/messages/IdeBundle.properties b/platform/platform-api/resources/messages/IdeBundle.properties index ced9bb4cb98b..6e289ae7efbe 100644 --- a/platform/platform-api/resources/messages/IdeBundle.properties +++ b/platform/platform-api/resources/messages/IdeBundle.properties @@ -2003,6 +2003,7 @@ toolwindow.stripe.Project=Project toolwindow.stripe.TODO=TODO toolwindow.stripe.Structure=Structure toolwindow.stripe.Favorites=Favorites +toolwindow.stripe.Problems=Auto-build toolwindow.stripe.Problems_View=Problems toolwindow.stripe.Commit=Commit toolwindow.stripe.Version_Control=Version Control