GRIM: Hide the MainModel when resetting it. Fix #229

This commit is contained in:
Giulio Camuffo 2011-07-08 16:46:31 +02:00
parent 994c2ef52f
commit b73f136ad1

View File

@ -603,7 +603,9 @@ void MainModelComponent::update() {
}
void MainModelComponent::reset() {
_visible = true;
// Set _visible to false or else after speaking to Sal's head there will be two Olivias.
// https://github.com/residual/residual/issues/229
_visible = false;
_hier->_hierVisible = _visible;
}