WIP: Brush assets project #106303

Draft
Julian Eisel wants to merge 351 commits from brush-assets-project into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
1 changed files with 3 additions and 1 deletions
Showing only changes of commit f5685e1570 - Show all commits

View File

@ -237,7 +237,9 @@ void transform_mode_snap_source_init(TransInfo *t, wmOperator * /*op*/)
const wmEvent *event = CTX_wm_window(t->context)->eventstate;
# ifdef RESET_TRANSFORMATION
wmGizmoFnModal modal_fn = gz->custom_modal ? gz->custom_modal : gz->type->modal;
modal_fn(t->context, gz, event, eWM_GizmoFlagTweak(0));
if (modal_fn) {
modal_fn(t->context, gz, event, eWM_GizmoFlagTweak(0));
}
# endif
WM_gizmo_modal_set_while_modal(t->region->gizmo_map, t->context, nullptr, event);