From 7c6e05ef6b3d4204db0cb04dcf47bd7f5b1414e7 Mon Sep 17 00:00:00 2001 From: Yves Rizoud Date: Wed, 16 Feb 2011 19:23:54 +0000 Subject: [PATCH] mode5: Fix shortcuts of 'cycle colors' and format checker, mixup during merge git-svn-id: svn://pulkomandy.tk/GrafX2/branches/cpcmode5@1727 416bcca6-2ee7-4201-b75f-2eb2f807beb1 --- src/hotkeys.c | 8 ++++++++ src/hotkeys.h | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/hotkeys.c b/src/hotkeys.c index 302b5644..732d5ba1 100644 --- a/src/hotkeys.c +++ b/src/hotkeys.c @@ -1642,6 +1642,14 @@ T_Key_config ConfigKey[NB_SHORTCUTS] = { SDLK_BACKQUOTE|MOD_CTRL, // Ctrl + `~ 0}, {198, + "Toggle color cycling", + "Activates or desactivates color", + "cycling, if the current image has", + "cycling colors. (See gradient menu)", + true, + SDLK_BACKQUOTE|MOD_CTRL, // Ctrl + `~ + 0}, + {199, "Format checker", "Performs a format check on the", "current image.", diff --git a/src/hotkeys.h b/src/hotkeys.h index e6f97c63..6ffc2de1 100644 --- a/src/hotkeys.h +++ b/src/hotkeys.h @@ -33,7 +33,7 @@ #endif #include -#define NB_SHORTCUTS 199 ///< Number of actions that can have a key combination associated to it. +#define NB_SHORTCUTS 200 ///< Number of actions that can have a key combination associated to it. /*** Types definitions and structs ***/