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/editors/interface/interface_region_tooltip.c')
-rw-r--r--source/blender/editors/interface/interface_region_tooltip.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/editors/interface/interface_region_tooltip.c b/source/blender/editors/interface/interface_region_tooltip.c
index 07e17033ee5..b11a727b173 100644
--- a/source/blender/editors/interface/interface_region_tooltip.c
+++ b/source/blender/editors/interface/interface_region_tooltip.c
@@ -1469,9 +1469,10 @@ ARegion *UI_tooltip_create_from_gizmo(bContext *C, wmGizmo *gz)
*/
if (gz->type->screen_bounds_get) {
rcti bounds;
- gz->type->screen_bounds_get(C, gz, &bounds);
- init_position[0] = bounds.xmin;
- init_position[1] = bounds.ymin;
+ if (gz->type->screen_bounds_get(C, gz, &bounds)) {
+ init_position[0] = bounds.xmin;
+ init_position[1] = bounds.ymin;
+ }
}
return ui_tooltip_create_with_data(C, data, init_position, NULL, aspect);