Fix T39745: "Origin to geometry" not working with Text objects. (regression)

This commit is contained in:
Campbell Barton 2014-04-16 13:18:42 +10:00
parent 70f089b6f5
commit 4769b44bdd
Notes: blender-bot 2023-02-14 10:48:27 +01:00
Referenced by issue #39745, "Origin to geometry" not working with Text (Font) objects.
1 changed files with 4 additions and 3 deletions

View File

@ -881,7 +881,7 @@ static int object_origin_set_exec(bContext *C, wmOperator *op)
Curve *cu = ob->data;
if (cu->bb == NULL && (centermode != ORIGIN_TO_CURSOR)) {
if (ob->bb == NULL && (centermode != ORIGIN_TO_CURSOR)) {
/* do nothing*/
}
else {
@ -889,8 +889,9 @@ static int object_origin_set_exec(bContext *C, wmOperator *op)
/* done */
}
else {
cent[0] = 0.5f * (cu->bb->vec[4][0] + cu->bb->vec[0][0]);
cent[1] = 0.5f * (cu->bb->vec[0][1] + cu->bb->vec[2][1]) - 0.5f; /* extra 0.5 is the height o above line */
/* extra 0.5 is the height o above line */
cent[0] = 0.5f * (ob->bb->vec[4][0] + ob->bb->vec[0][0]);
cent[1] = 0.5f * (ob->bb->vec[0][1] + ob->bb->vec[2][1]);
}
cent[2] = 0.0f;