diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index be92b59343..24261d978c 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -1538,7 +1538,7 @@ void Application::mouseReleaseEvent(QMouseEvent* event, unsigned int deviceID) { return; } - _keyboardMouseDevice.mousePressEvent(event); + _keyboardMouseDevice.mouseReleaseEvent(event); if (activeWindow() == _window) { diff --git a/interface/src/ui/UserInputMapper.cpp b/interface/src/ui/UserInputMapper.cpp index 8a86e3b3bf..22683173df 100755 --- a/interface/src/ui/UserInputMapper.cpp +++ b/interface/src/ui/UserInputMapper.cpp @@ -339,10 +339,10 @@ void UserInputMapper::assignDefaulActionUnitScales() { _actionUnitScales[LATERAL_RIGHT] = 1.0f; // 1m per unit _actionUnitScales[VERTICAL_DOWN] = 1.0f; // 1m per unit _actionUnitScales[VERTICAL_UP] = 1.0f; // 1m per unit - _actionUnitScales[YAW_LEFT] = glm::radians(1.0f); // 3 degree per unit - _actionUnitScales[YAW_RIGHT] = glm::radians(1.0f); // 3 degree per unit - _actionUnitScales[PITCH_DOWN] = glm::radians(1.0f); // 3 degree per unit - _actionUnitScales[PITCH_UP] = glm::radians(1.0f); // 3 degree per unit + _actionUnitScales[YAW_LEFT] = 1.0f;//glm::radians(1.0f); // 3 degree per unit + _actionUnitScales[YAW_RIGHT] = 1.0f;//glm::radians(1.0f); // 3 degree per unit + _actionUnitScales[PITCH_DOWN] = 1.0f;//glm::radians(1.0f); // 3 degree per unit + _actionUnitScales[PITCH_UP] = 1.0f;//glm::radians(1.0f); // 3 degree per unit _actionUnitScales[BOOM_IN] = 1.0f; // 1m per unit _actionUnitScales[BOOM_OUT] = 1.0f; // 1m per unit }