Merge pull request #530 from ey6es/master

Fix for previous fix: we need to call trigger in order to get the camera handling.
This commit is contained in:
Andrzej Kapolka 2013-06-12 13:53:11 -07:00
commit da78c70a68

View file

@ -926,8 +926,8 @@ void Application::setFullscreen(bool fullscreen) {
}
void Application::setRenderFirstPerson(bool firstPerson) {
if (firstPerson) {
_lookingInMirror->setChecked(false);
if (firstPerson && _lookingInMirror->isChecked()) {
_lookingInMirror->trigger();
}
}