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:
authorMartin Poirier <theeth@yahoo.com>2008-01-28 04:02:38 +0300
committerMartin Poirier <theeth@yahoo.com>2008-01-28 04:02:38 +0300
commit39689cbf73e7c0f5a44a0f667c85315352da6f4e (patch)
treea8cf7edf7c5fe71e980d784634e9b81b5b2e46e1 /source/blender/src/transform.c
parent354e6b9c189bb6cea57577ba3a8e7fb7ca28a796 (diff)
typo in text
Diffstat (limited to 'source/blender/src/transform.c')
-rw-r--r--source/blender/src/transform.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/src/transform.c b/source/blender/src/transform.c
index 7dd70e39544..f9cc7244789 100644
--- a/source/blender/src/transform.c
+++ b/source/blender/src/transform.c
@@ -193,10 +193,10 @@ int manageObjectSpace(int confirm, int set) {
return -1;
if (confirm == 0) {
- if (set && pupmenu("Custome Space %t|Add and Use Active Object%x1") != 1) {
+ if (set && pupmenu("Custom Space %t|Add and Use Active Object%x1") != 1) {
return -1;
}
- else if (set == 0 && pupmenu("Custome Space %t|Add Active Object%x1") != 1) {
+ else if (set == 0 && pupmenu("Custom Space %t|Add Active Object%x1") != 1) {
return -1;
}
}
@@ -210,10 +210,10 @@ int confirmSpace(int set, char text[])
char menu[64];
if (set) {
- sprintf(menu, "Custome Space %%t|Add and Use %s%%x1", text);
+ sprintf(menu, "Custom Space %%t|Add and Use %s%%x1", text);
}
else {
- sprintf(menu, "Custome Space %%t|Add %s%%x1", text);
+ sprintf(menu, "Custom Space %%t|Add %s%%x1", text);
}
if (pupmenu(menu) == 1) {