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:
Diffstat (limited to 'source/blender/windowmanager/gizmo/intern/wm_gizmo_target_props.c')
-rw-r--r--source/blender/windowmanager/gizmo/intern/wm_gizmo_target_props.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/windowmanager/gizmo/intern/wm_gizmo_target_props.c b/source/blender/windowmanager/gizmo/intern/wm_gizmo_target_props.c
index 7cb1a0bdf4b..63e833d73c3 100644
--- a/source/blender/windowmanager/gizmo/intern/wm_gizmo_target_props.c
+++ b/source/blender/windowmanager/gizmo/intern/wm_gizmo_target_props.c
@@ -312,9 +312,10 @@ void WM_gizmo_do_msg_notify_tag_refresh(bContext *UNUSED(C),
ARegion *region = msg_val->owner;
wmGizmoMap *gzmap = msg_val->user_data;
- ED_region_tag_redraw(
- region); /* Could possibly avoid a full redraw and only tag for editor overlays
- * redraw in some cases, see #ED_region_tag_redraw_editor_overlays(). */
+ /* Could possibly avoid a full redraw and only tag for editor overlays
+ * redraw in some cases, see #ED_region_tag_redraw_editor_overlays(). */
+ ED_region_tag_redraw(region);
+
WM_gizmomap_tag_refresh(gzmap);
}