From 7e02c901031f96380ba63795563d0d36517cafe2 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 May 2022 17:57:34 +1000 Subject: Fix WM_toolsystem_refresh_screen_all failing to refresh tools Error in 3e1baa7d539757b8e5fa870d4909354e0b5645b9. --- source/blender/windowmanager/intern/wm_toolsystem.c | 1 + 1 file changed, 1 insertion(+) 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); } } } -- cgit v1.2.3