(#695) Unintentional picking fixed.

Fixed in viewer, keeping the concept of the navigation policies to not flag the
the events as handled.
Made this clearer by adding an interface to turn event consumption on or off on the
navigation policies.
This commit is contained in:
Jacob Støren
2015-12-10 09:27:43 +01:00
parent f1574bc774
commit 1d9481f09b
8 changed files with 45 additions and 161 deletions

View File

@@ -166,5 +166,8 @@ bool RiuGeoQuestNavigation::handleInputEvent(QInputEvent* inputEvent)
break;
}
return false;//isEventHandled;
if (isSupposedToConsumeEvents())
return isEventHandled;
else
return false;
}