This is an automated email from the git hooks/post-receive script. thansen pushed a commit to branch master in repository aseprite.
commit 962928a6095af0f11fbc0472b7a400bf47cc0d44 Author: David Capello <[email protected]> Date: Fri Mar 4 15:41:32 2016 -0300 Add the possibility to assign a keyboard shortcut to color quantization (#999) --- data/gui.xml | 3 +++ src/app/commands/cmd_color_quantization.cpp | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/data/gui.xml b/data/gui.xml index d87e035..8c53f21 100644 --- a/data/gui.xml +++ b/data/gui.xml @@ -389,6 +389,9 @@ <key command="SetColorSelector"> <param name="type" value="ryb-wheel" /> </key> + <key command="LoadPalette" /> + <key command="SavePalette" /> + <key command="ColorQuantization" /> </commands> <!-- Keyboard shortcuts to select tools --> diff --git a/src/app/commands/cmd_color_quantization.cpp b/src/app/commands/cmd_color_quantization.cpp index 11d777a..3e43239 100644 --- a/src/app/commands/cmd_color_quantization.cpp +++ b/src/app/commands/cmd_color_quantization.cpp @@ -1,5 +1,5 @@ // Aseprite -// Copyright (C) 2001-2015 David Capello +// Copyright (C) 2001-2016 David Capello // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as @@ -75,7 +75,7 @@ private: ColorQuantizationCommand::ColorQuantizationCommand() : Command("ColorQuantization", - "Color Quantization", + "Create Palette from Current Sprite (Color Quantization)", CmdRecordableFlag) { } -- 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

