Skip to content
Snippets Groups Projects
Commit 6c41d87a authored by noah the goodra's avatar noah the goodra
Browse files

removal of the -1 case in the configure_input switch

this case is unneeded because no enumeration value can possibly correspond to it
parent d0bf7df5
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment