diff --git a/src/gui/jaccel.cpp b/src/gui/jaccel.cpp index b191887e8..dc7770226 100644 --- a/src/gui/jaccel.cpp +++ b/src/gui/jaccel.cpp @@ -101,11 +101,14 @@ static void proc_one_word(JAccel accel, char* word) for (tok=ustrtok(word, "+"); tok; tok=ustrtok(NULL, "+")) { - // key_shifts + // modifiers if (ustricmp (tok, "Shift") == 0) { shifts |= KB_SHIFT_FLAG; } + else if (ustricmp (tok, "Alt") == 0) { + shifts |= KB_ALT_FLAG; + } else if (ustricmp (tok, "Ctrl") == 0) { shifts |= KB_CTRL_FLAG; }