Skip to content

Commit

Permalink
Fixed|Client: Don’t try to update root in busy mode
Browse files Browse the repository at this point in the history
The busy mode currently uses a separate UI root.
  • Loading branch information
skyjake committed Nov 10, 2013
1 parent 7d19505 commit f46de54
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion doomsday/client/src/ui/clientwindow.cpp
Expand Up @@ -469,7 +469,10 @@ DENG2_OBSERVES(App, GameChange)
container().add(notifications);
container().add(taskBar);

root.update();
if(mode == Normal)
{
root.update();
}
}

void updateCompositor()
Expand Down

0 comments on commit f46de54

Please sign in to comment.