From 26b6dfefcbdc42358163c407e52185267b15a3d2 Mon Sep 17 00:00:00 2001 From: Dana Dahlstrom Date: Mon, 11 May 2020 09:00:00 -0700 Subject: Update BUILD rules after IDEA 201.7223.91 merge Change-Id: I0833a19bea3aad893ab6c6db3a3fa082dd981ce2 --- BUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD b/BUILD index a201bef..498f197 100644 --- a/BUILD +++ b/BUILD @@ -27,7 +27,7 @@ iml_module( "//tools/idea/platform/diagnostic:intellij.platform.diagnostic", "//tools/idea/.idea/libraries:error-prone-annotations", "//tools/idea/java/ide-resources:intellij.java.ide.resources", - "//prebuilts/tools/common/m2/repository/com/jetbrains/intellij/documentation/tips-intellij-idea-community/201.8:jar", + "//prebuilts/tools/common/m2/repository/com/jetbrains/intellij/documentation/tips-intellij-idea-community/201.11:jar", "//tools/idea/jvm/jvm-analysis-impl:intellij.jvm.analysis.impl", "//tools/idea/java/compiler/instrumentation-util-8:intellij.java.compiler.instrumentationUtil.java8", "//tools/idea/.idea/libraries:precompiled_jshell-frontend", -- cgit v1.2.3 From 8cff02c7478706f768c56f8f1c90bc6b7699ddaa Mon Sep 17 00:00:00 2001 From: Sergey Malenkov Date: Wed, 31 Oct 2018 15:08:08 +0300 Subject: UX-330: do not add duplicated API to JBUI.CurrentTheme for awhile Change-Id: I17af659d67b3d89b193f24c0f4347356119d688e --- src/com/google/devrel/cluestick/studioclient/CodeBrowser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/google/devrel/cluestick/studioclient/CodeBrowser.java b/src/com/google/devrel/cluestick/studioclient/CodeBrowser.java index 703efc2..27de8db 100644 --- a/src/com/google/devrel/cluestick/studioclient/CodeBrowser.java +++ b/src/com/google/devrel/cluestick/studioclient/CodeBrowser.java @@ -65,7 +65,7 @@ import javax.swing.JPanel; * CodeBrowser implements Browser to show Cluestick search results containing code. */ class CodeBrowser extends JPanel implements Browser, Disposable { - private static final Color HIGHLIGHT_BACKGROUND = UIUtil.getTreeUnfocusedSelectionBackground(); + private static final Color HIGHLIGHT_BACKGROUND = UIUtil.getTreeSelectionBackground(false); private static final TextAttributes HIGHLIGHT_ATTRIBUTES = new TextAttributes(null, HIGHLIGHT_BACKGROUND, null, EffectType.SEARCH_MATCH, Font.BOLD); private static final Pattern WHITESPACE_PREFIX = Pattern.compile("^\\s*"); -- cgit v1.2.3