Fix T57086: Offset Even option is unclickable

This commit is contained in:
Campbell Barton 2018-12-10 16:51:53 +11:00
parent 155b02a196
commit 929ad440d7
Notes: blender-bot 2023-02-14 05:14:08 +01:00
Referenced by issue #57086, Extrude along normals, Shrink/fatten etc tools issue (Offset Even option is unclickable)
1 changed files with 1 additions and 1 deletions

View File

@ -1374,7 +1374,7 @@ void initTransInfo(bContext *C, TransInfo *t, wmOperator *op, const wmEvent *eve
}
if (prop_id && (prop = RNA_struct_find_property(op->ptr, prop_id))) {
SET_FLAG_FROM_TEST(t->flag, RNA_property_boolean_get(op->ptr, prop), T_ALT_TRANSFORM);
SET_FLAG_FROM_TEST(t->flag, !RNA_property_boolean_get(op->ptr, prop), T_ALT_TRANSFORM);
}
}