summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--platform/default/glfw_view.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/default/glfw_view.cpp b/platform/default/glfw_view.cpp
index 6d8c208dc4..e83a832728 100644
--- a/platform/default/glfw_view.cpp
+++ b/platform/default/glfw_view.cpp
@@ -335,7 +335,8 @@ void GLFWView::run() {
glfwWaitEvents();
const bool dirty = !clean.test_and_set();
if (dirty) {
- map->renderSync();
+ const bool needsRerender = map->renderSync();
+ map->nudgeTransitions(needsRerender);
}
}
}