Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2006-06-13 00:01:18 +0400
committerTon Roosendaal <ton@blender.org>2006-06-13 00:01:18 +0400
commitb58998729bbc27dc978436596f81b4d1df899137 (patch)
tree6226d62110dfb7d42294f549df63d17a7b5eba07 /source/blender/src/toolbox.c
parent98b8b876b61995af8f8e349ac39fae653f8a8af4 (diff)
Last minute patch from Chris Want
Nkey "Properties Panel" now has Dimension ("Dim") buttons too. This reads from the actual bounding box value to see the size. Note that dimensions for animated & deformed objects will change per frame. (Cleaned up buttons layout for patch, and added support for Curve, Text and Surface objects)
Diffstat (limited to 'source/blender/src/toolbox.c')
-rw-r--r--source/blender/src/toolbox.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/src/toolbox.c b/source/blender/src/toolbox.c
index a6654795243..fb7b7ed030a 100644
--- a/source/blender/src/toolbox.c
+++ b/source/blender/src/toolbox.c
@@ -1175,10 +1175,10 @@ static void tb_do_transform_clearapply(void *arg, int event)
case 1: /* clear rotation */
clear_object('r');
break;
- case 2: /* clear size */
+ case 2: /* clear scale */
clear_object('s');
break;
- case 3: /* apply size/rotation */
+ case 3: /* apply scale/rotation */
apply_object();
break;
case 4: /* apply deformation */
@@ -1194,9 +1194,9 @@ static void tb_do_transform_clearapply(void *arg, int event)
static TBitem tb_transform_clearapply[]= {
{ 0, "Clear Location|Alt G", 0, NULL},
{ 0, "Clear Rotation|Alt R", 1, NULL},
-{ 0, "Clear Size|Alt S", 2, NULL},
+{ 0, "Clear Scale|Alt S", 2, NULL},
{ 0, "SEPR", 0, NULL},
-{ 0, "Apply Size/Rotation|Ctrl A", 3, NULL},
+{ 0, "Apply Scale/Rotation|Ctrl A", 3, NULL},
{ 0, "Apply Deformation|Shift Ctrl A", 4, NULL},
{ 0, "Make Duplicates Real|Shift Ctrl A", 5, NULL},
{ -1, "", 0, tb_do_transform_clearapply}};