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:
authorKent Mein <mein@cs.umn.edu>2004-02-05 20:26:37 +0300
committerKent Mein <mein@cs.umn.edu>2004-02-05 20:26:37 +0300
commitf9c1dcc802b1b48aca016bce3a108b264d2de188 (patch)
tree4eb5bcd846151905f2597a6db0e42d18984bf525 /source/blender/src/toolbox.c
parent6aab05fea2b134253486e185e71931884028d223 (diff)
Christian Pless's patch it just updates the toolbox shorcuts for
Rotation and Scaling so they have R and S instead of all 3 having G as the shortcut. (Its in the transform/Rotate on Axis and transform/Scale on Axis toolbox items.) Kent
Diffstat (limited to 'source/blender/src/toolbox.c')
-rw-r--r--source/blender/src/toolbox.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/source/blender/src/toolbox.c b/source/blender/src/toolbox.c
index dc920d78305..d62c7c75cef 100644
--- a/source/blender/src/toolbox.c
+++ b/source/blender/src/toolbox.c
@@ -1974,13 +1974,13 @@ static void tb_do_transform_rotateaxis(void *arg, int event)
}
static TBitem tb_transform_rotateaxis[]= {
-{ 0, "X Global|G, X", 0, NULL},
-{ 0, "Y Global|G, Y", 1, NULL},
-{ 0, "Z Global|G, Z", 2, NULL},
+{ 0, "X Global|R, X", 0, NULL},
+{ 0, "Y Global|R, Y", 1, NULL},
+{ 0, "Z Global|R, Z", 2, NULL},
{ 0, "SEPR", 0, NULL},
-{ 0, "X Local|G, X, X", 3, NULL},
-{ 0, "Y Local|G, Y, Y", 4, NULL},
-{ 0, "Z Local|G, Z, Z", 5, NULL},
+{ 0, "X Local|R, X, X", 3, NULL},
+{ 0, "Y Local|R, Y, Y", 4, NULL},
+{ 0, "Z Local|R, Z, Z", 5, NULL},
{ -1, "", 0, tb_do_transform_rotateaxis}};
@@ -2011,13 +2011,13 @@ static void tb_do_transform_scaleaxis(void *arg, int event)
}
static TBitem tb_transform_scaleaxis[]= {
-{ 0, "X Global|G, X", 0, NULL},
-{ 0, "Y Global|G, Y", 1, NULL},
-{ 0, "Z Global|G, Z", 2, NULL},
+{ 0, "X Global|S, X", 0, NULL},
+{ 0, "Y Global|S, Y", 1, NULL},
+{ 0, "Z Global|S, Z", 2, NULL},
{ 0, "SEPR", 0, NULL},
-{ 0, "X Local|G, X, X", 3, NULL},
-{ 0, "Y Local|G, Y, Y", 4, NULL},
-{ 0, "Z Local|G, Z, Z", 5, NULL},
+{ 0, "X Local|S, X, X", 3, NULL},
+{ 0, "Y Local|S, Y, Y", 4, NULL},
+{ 0, "Z Local|S, Z, Z", 5, NULL},
{ -1, "", 0, tb_do_transform_scaleaxis}};
static void tb_do_transform_clearapply(void *arg, int event)