From 7bc677d84b62d90de4bb4c1906601726bd835b76 Mon Sep 17 00:00:00 2001 From: Sergey Malenkov Date: Thu, 11 Jun 2020 18:56:19 +0300 Subject: [PATCH] Rename stripe title for Auto-build toolwindow GitOrigin-RevId: 7e432bbb0162fb8ffc3c424b95ea16b0745a699b --- .../impl/src/com/intellij/compiler/impl/ProblemsViewImpl.java | 2 ++ platform/platform-api/resources/messages/IdeBundle.properties | 1 + 2 files changed, 3 insertions(+) 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