Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-05-05 10:57:34 +0300
committerCampbell Barton <campbell@blender.org>2022-05-05 13:13:10 +0300
commit7e02c901031f96380ba63795563d0d36517cafe2 (patch)
tree6e2789f0309f93b48c03006b9cbd0c9d51a85271
parent94533ca4b8b880ff6d2e3db1a238add2b0ee31e0 (diff)
Fix WM_toolsystem_refresh_screen_all failing to refresh tools
Error in 3e1baa7d539757b8e5fa870d4909354e0b5645b9.
-rw-r--r--source/blender/windowmanager/intern/wm_toolsystem.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/windowmanager/intern/wm_toolsystem.c b/source/blender/windowmanager/intern/wm_toolsystem.c
index 388abe21578..e84b6485596 100644
--- a/source/blender/windowmanager/intern/wm_toolsystem.c
+++ b/source/blender/windowmanager/intern/wm_toolsystem.c
@@ -571,6 +571,7 @@ void WM_toolsystem_refresh_screen_all(Main *bmain)
/* Update all ScrArea's tools */
for (wmWindowManager *wm = bmain->wm.first; wm; wm = wm->id.next) {
LISTBASE_FOREACH (wmWindow *, win, &wm->windows) {
+ WM_toolsystem_refresh_screen_window(win);
}
}
}