input_common: Add home and hard touch press buttons to UDP controllers

This commit is contained in:
german77
2022-01-30 09:15:29 -06:00
parent 11099dda2e
commit 3d2d77eb3f
4 changed files with 22 additions and 3 deletions

View File

@ -102,6 +102,10 @@ QString GetButtonName(Common::Input::ButtonNames button_name) {
return QObject::tr("Share");
case Common::Input::ButtonNames::Options:
return QObject::tr("Options");
case Common::Input::ButtonNames::Home:
return QObject::tr("Home");
case Common::Input::ButtonNames::Touch:
return QObject::tr("Touch");
case Common::Input::ButtonNames::ButtonMouseWheel:
return QObject::tr("Wheel", "Indicates the mouse wheel");
case Common::Input::ButtonNames::ButtonBackward: