You've already forked lazarus-ccr
mbColorLib: Fix display of hex color value in hint windows.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8620 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -99,7 +99,7 @@ begin
|
||||
ColorToHSL(c, hslH, hslS, hslL);
|
||||
ColorToHSV(c, hsvH, hsvS, hsvV);
|
||||
|
||||
h := AnsiReplaceText(fmt, '%hex', '#' + ColorToHex(c));
|
||||
h := AnsiReplaceText(fmt, '%hex', ColorToHex(c));
|
||||
h := AnsiReplaceText(h, '%cieL', IntToStr(Round(GetCIElValue(c))));
|
||||
h := AnsiReplaceText(h, '%cieA', IntToStr(Round(GetCIEaValue(c))));
|
||||
h := AnsiReplaceText(h, '%cieB', IntToStr(Round(GetCIEbValue(c))));
|
||||
|
Reference in New Issue
Block a user