Fix view-axis gizmo tool-tip placement

Bounding box calculation ignored the gizmo size preference.
This commit is contained in:
Campbell Barton 2021-01-25 13:44:42 +11:00
parent c5e409b013
commit 9708aa6341
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ static int gizmo_axis_cursor_get(wmGizmo *UNUSED(gz))
static void gizmo_axis_bounds(bContext *C, wmGizmo *gz, rcti *r_bounding_box)
{
ScrArea *area = CTX_wm_area(C);
const float rad = (40.0f * U.dpi_fac);
const float rad = WIDGET_RADIUS;
r_bounding_box->xmin = gz->matrix_basis[3][0] + area->totrct.xmin - rad;
r_bounding_box->ymin = gz->matrix_basis[3][1] + area->totrct.ymin - rad;
r_bounding_box->xmax = r_bounding_box->xmin + rad;