mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 08:04:01 +02:00
commit
602060525b
2 changed files with 4 additions and 1 deletions
|
@ -1004,6 +1004,9 @@ void Application::keyPressEvent(QKeyEvent* event) {
|
|||
case Qt::Key_Minus:
|
||||
_myAvatar.decreaseSize();
|
||||
break;
|
||||
case Qt::Key_Equal:
|
||||
_myAvatar.resetSize();
|
||||
break;
|
||||
|
||||
case Qt::Key_1:
|
||||
case Qt::Key_2:
|
||||
|
|
|
@ -249,7 +249,7 @@ Menu::Menu() :
|
|||
SLOT(decreaseSize()));
|
||||
addActionToQMenuAndActionHash(avatarSizeMenu,
|
||||
MenuOption::ResetAvatarSize,
|
||||
0,
|
||||
Qt::Key_Equal,
|
||||
appInstance->getAvatar(),
|
||||
SLOT(resetSize()));
|
||||
|
||||
|
|
Loading…
Reference in a new issue