From 24103740dae4fab447842b609c290487ab3e7442 Mon Sep 17 00:00:00 2001 From: Lucas Crisman Date: Wed, 15 Jan 2014 14:50:25 -0300 Subject: [PATCH] equal sign shortcut for Reset Avatar Size on Application keyPress Event --- interface/src/Application.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 64a50a5b99..c6a99f6734 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -1017,6 +1017,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: