Proper fix for Ton's commit.
Original commit message: "Cosmetic change (after bugreport), scaling in axis (press X,Y,Z) now prints in header "local" too, this to indicate it only does local scales." The solution was half good, since only object mode is restricted to local axis constraints. Fixed by checking for the Local flag (which was properly set).
This commit is contained in:
@@ -5952,7 +5952,7 @@ void transform(int mode)
|
||||
sprintf(str, "Sizex: %.3f Sizey: %.3f Sizez: >%.3f<", sizelo[0], sizelo[1], sizelo[2]);
|
||||
}
|
||||
}
|
||||
else if (axismode)
|
||||
else if (axismode & TRANSLOCAL)
|
||||
sprintf(str, "Local Sizex: %.3f Sizey: %.3f Sizez: %.3f", sizelo[0], sizelo[1], sizelo[2]);
|
||||
else
|
||||
sprintf(str, "Sizex: %.3f Sizey: %.3f Sizez: %.3f", sizelo[0], sizelo[1], sizelo[2]);
|
||||
|
||||
Reference in New Issue
Block a user