use Control or Alt under Linux for Maya style mouse control (Ubuntu hijacks Alt)

This commit is contained in:
erwincoumans
2013-07-18 16:28:41 -07:00
parent a5b73e7c76
commit 392347b202
4 changed files with 25 additions and 10 deletions

View File

@@ -195,7 +195,7 @@ struct InternalDataRenderer : public GLInstanceRendererInternalData
void mouseMoveCallback(float x, float y)
{
if (m_altPressed)
if (m_altPressed || m_controlPressed)
{
float xDelta = x-m_mouseXpos;
float yDelta = y-m_mouseYpos;