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 ***/