From 6d11dd465ca50b2a7fffaf00b3da4dee5c0753a2 Mon Sep 17 00:00:00 2001 From: "Anthony J. Thibault" Date: Thu, 10 Mar 2016 13:12:09 -0800 Subject: [PATCH] Application: reset avatar on displayMode change but not HMD sensor. --- interface/src/Application.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 66662a7500..795145ca5c 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -4857,6 +4857,9 @@ void Application::updateDisplayMode() { } emit activeDisplayPluginChanged(); + // reset the avatar, to set head and hand palms back to a resonable default pose. + getMyAvatar()->reset(false); + Q_ASSERT_X(_displayPlugin, "Application::updateDisplayMode", "could not find an activated display plugin"); }