2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

Merge pull request #2507 from jfmherokiller/keyidchange

removal of the -1 case in the configure_input switch
This commit is contained in:
bunnei 2017-02-03 14:56:55 -05:00 committed by GitHub
commit c330dcd3fd

View file

@ -17,7 +17,6 @@ static QString getKeyName(Qt::Key key_code) {
case Qt::Key_Alt:
return QObject::tr("Alt");
case Qt::Key_Meta:
case -1:
return "";
default:
return QKeySequence(key_code).toString();