mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-05 21:57:20 +00:00
Include RGB decimal values when we pick HSV colors (fix #1013)
This commit is contained in:
parent
0993069e0b
commit
6661c0a32a
@ -235,6 +235,11 @@ std::string Color::toHumanReadableString(PixelFormat pixelFormat, HumanReadableS
|
||||
|
||||
if (pixelFormat == IMAGE_INDEXED)
|
||||
result << " Index " << color_utils::color_for_image(*this, pixelFormat);
|
||||
|
||||
result << " (RGB "
|
||||
<< getRed() << " "
|
||||
<< getGreen() << " "
|
||||
<< getBlue() << ")";
|
||||
}
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user