Skip to content

Commit

Permalink
GP-0 fix color of the horizontal line and text that separates programs
Browse files Browse the repository at this point in the history
  • Loading branch information
dev747368 committed May 9, 2024
1 parent c6bf1f3 commit f8f4d2f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import docking.action.DockingAction;
import docking.action.MenuData;
import docking.widgets.label.GDHtmlLabel;
import generic.theme.GThemeDefaults.Colors.Palette;
import generic.theme.GThemeDefaults.Colors;
import ghidra.util.HTMLUtilities;

/**
Expand Down Expand Up @@ -57,7 +57,7 @@ public HorizontalRuleAction(String owner, String topName, String bottomName) {
String bottomHtml = HTMLUtilities.escapeHTML(bottomName);
menuData.setMenuItemNamePlain(String.format("""
<html><CENTER><FONT SIZE=2 COLOR="%s">%s<BR>%s</FONT></CENTER>
""", Palette.SILVER, topHtml, bottomHtml));
""", Colors.FOREGROUND_DISABLED, topHtml, bottomHtml));
setMenuBarData(menuData);

// the description is meant to be used for the tooltip and is larger
Expand Down

0 comments on commit f8f4d2f

Please sign in to comment.