Improved the indentation and case to make the code more consistent and readable
This commit is contained in:
parent
5aa897b5fd
commit
2f570ca3a9
@ -438,15 +438,14 @@ bool StandardManipulator::performMovement()
|
||||
|
||||
// call appropriate methods
|
||||
unsigned int buttonMask = _ga_t1->getButtonMask();
|
||||
unsigned int ModKeyMask = _ga_t1->getModKeyMask();
|
||||
unsigned int modKeyMask = _ga_t1->getModKeyMask();
|
||||
if( buttonMask == GUIEventAdapter::LEFT_MOUSE_BUTTON )
|
||||
{
|
||||
return performMovementLeftMouseButton( eventTimeDelta, dx, dy );
|
||||
}
|
||||
else if( buttonMask == GUIEventAdapter::MIDDLE_MOUSE_BUTTON ||
|
||||
( buttonMask == GUIEventAdapter::RIGHT_MOUSE_BUTTON &&
|
||||
ModKeyMask & GUIEventAdapter::MODKEY_CTRL ) ||
|
||||
buttonMask == (GUIEventAdapter::LEFT_MOUSE_BUTTON | GUIEventAdapter::RIGHT_MOUSE_BUTTON) )
|
||||
else if( ( buttonMask == GUIEventAdapter::MIDDLE_MOUSE_BUTTON ) ||
|
||||
( buttonMask == GUIEventAdapter::RIGHT_MOUSE_BUTTON && modKeyMask & GUIEventAdapter::MODKEY_CTRL ) ||
|
||||
( buttonMask == (GUIEventAdapter::LEFT_MOUSE_BUTTON | GUIEventAdapter::RIGHT_MOUSE_BUTTON) ) )
|
||||
{
|
||||
return performMovementMiddleMouseButton( eventTimeDelta, dx, dy );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user