[Bf-blender-cvs] [7e02c901031] blender-v3.2-release: Fix WM_toolsystem_refresh_screen_all failing to refresh tools

Campbell Barton noreply at git.blender.org
Thu May 5 12:13:47 CEST 2022


Commit: 7e02c901031f96380ba63795563d0d36517cafe2
Author: Campbell Barton
Date:   Thu May 5 17:57:34 2022 +1000
Branches: blender-v3.2-release
https://developer.blender.org/rB7e02c901031f96380ba63795563d0d36517cafe2

Fix WM_toolsystem_refresh_screen_all failing to refresh tools

Error in 3e1baa7d539757b8e5fa870d4909354e0b5645b9.

===================================================================

M	source/blender/windowmanager/intern/wm_toolsystem.c

===================================================================

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);
     }
   }
 }



More information about the Bf-blender-cvs mailing list