Skip to content

Commit 803dfc3

Browse files
committed
Minor edge case fix...
1 parent 8c1f407 commit 803dfc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

External/Plugins/ASCompletion/Completion/ASDocumentation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ static public string GetTipShortDetails(CommentBlock cb, string highlightParam)
457457
static private string GetShortcutDocs()
458458
{
459459
Color themeForeColor = PluginBase.MainForm.GetThemeColor("MethodCallTip.InfoColor");
460-
string foreColorString = themeForeColor != Color.Empty ? ColorTranslator.ToHtml(themeForeColor) : "#666666:MULTIPLY";
460+
string foreColorString = themeForeColor != Color.Empty ? DataConverter.ColorToHex(themeForeColor).Replace("0x", "#") : "#666666:MULTIPLY";
461461
return "\n[COLOR=" + foreColorString + "][i](" + TextHelper.GetString("Info.ShowDetails") + ")[/i][/COLOR]";
462462
}
463463

0 commit comments

Comments
 (0)