Skip to content

Commit

Permalink
removed painful light red on blue background selection in Darcula theme
Browse files Browse the repository at this point in the history
  • Loading branch information
rholder committed Apr 26, 2015
1 parent 2701052 commit e5ec4af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,13 @@
<li>Toggle the showing of replaced dependencies</li>
</ul>
]]></description>
<version>2.0.2</version>
<version>2.0.3</version>
<change-notes><![CDATA[
<p>2.0.3 - 2015-XX-XX
<ul>
<li>Removed painful light red on blue background selection color <a href="https://github.com/rholder/gradle-view/issues/6">#6</a></li>
</ul>
</p>
<p>2.0.2 - 2014-10-06
<ul>
<li>Fixed some wonky Windows JAVA_HOME path behavior <a href="https://github.com/rholder/gradle-view/issues/5">#5</a></li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public DependencyViewer(Project p, ToolWindow t) {
this.dependencyCellRenderer = new DependencyCellRenderer();
this.dependencyCellRenderer.omittedSelected = JBColor.MAGENTA;
this.dependencyCellRenderer.omittedUnselected = JBColor.GRAY;
this.dependencyCellRenderer.normalSelected = JBColor.RED;
this.dependencyCellRenderer.normalSelected = JBColor.foreground();
this.dependencyCellRenderer.normalUnselected = JBColor.BLACK;
this.information.setEditable(false);

Expand Down

0 comments on commit e5ec4af

Please sign in to comment.