This is an automated email from the git hooks/post-receive script. thansen pushed a commit to branch master in repository aseprite.
commit 6661c0a32acf90fae272f2342c75b53dde9ab7dd Author: David Capello <[email protected]> Date: Tue Apr 19 15:21:54 2016 -0300 Include RGB decimal values when we pick HSV colors (fix #1013) --- src/app/color.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/color.cpp b/src/app/color.cpp index 12dd7a3..ac95082 100644 --- a/src/app/color.cpp +++ b/src/app/color.cpp @@ -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; -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/aseprite.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

