Fix T70499: Can't change Brush Texture Rotation without holding the Shift key.

Reviewed By: brecht

Maniphest Tasks: T70499

Differential Revision: https://developer.blender.org/D5985
This commit is contained in:
Pablo Dobarro 2019-10-03 23:26:05 +02:00
parent 8afa93d82d
commit 2b55a1da50
Notes: blender-bot 2023-02-14 06:45:14 +01:00
Referenced by issue #70499, Can't change Brush Texture Rotation without holding the Shift key.
1 changed files with 8 additions and 4 deletions

View File

@ -2641,14 +2641,18 @@ static int radial_control_modal(bContext *C, wmOperator *op, const wmEvent *even
}
else {
delta[0] = rc->initial_mouse[0] - event->x;
delta[1] = 0.0f;
delta[1] = rc->initial_mouse[1] - event->y;
if (rc->zoom_prop) {
RNA_property_float_get_array(&rc->zoom_ptr, rc->zoom_prop, zoom);
delta[0] /= zoom[0];
delta[1] /= zoom[1];
}
if (rc->subtype == PROP_ANGLE) {
dist = len_v2(delta);
}
else {
dist = clamp_f(-delta[0], 0.0f, FLT_MAX);
}
dist = clamp_f(-delta[0], 0.0f, FLT_MAX);
}
/* calculate new value and apply snapping */