Skip to content

Commit

Permalink
recognize keypad
Browse files Browse the repository at this point in the history
  • Loading branch information
major-kolz authored and Rui Abreu Ferreira committed Mar 30, 2017
1 parent d7745c3 commit c208c1a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/gui/input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ QString InputConv::modPrefix(Qt::KeyboardModifiers mod)
) {
modprefix += "A-";
}
if ( mod & Qt::KeypadModifier ) {
modprefix += "k";
}

return modprefix;
}

Expand Down

0 comments on commit c208c1a

Please sign in to comment.