Skip to content

Commit b380fd5

Browse files
committed
Merge remote-tracking branch 'origin/GP-0-dragonmacher-test-fixes-2-26-24'
2 parents f6fea70 + aee400a commit b380fd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Ghidra/Framework/Gui/src/main/java/ghidra/util/HTMLUtilities.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ public static String styleText(SimpleAttributeSet attributes, String text) {
391391
Object colorAttribute = attributes.getAttribute(StyleConstants.Foreground);
392392
if (colorAttribute instanceof Color fgColor) {
393393
String hexColor = HTMLUtilities.toHexString(fgColor);
394-
color = "color: % s;".formatted(hexColor);
394+
color = "color: %s;".formatted(hexColor);
395395
}
396396

397397
String escaped = escapeHTML(text);

0 commit comments

Comments
 (0)