Include RGB decimal values when we pick HSV colors (fix #1013)

This commit is contained in:
David Capello 2016-04-19 15:21:54 -03:00
parent 0993069e0b
commit 6661c0a32a

View File

@ -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;