From 39689cbf73e7c0f5a44a0f667c85315352da6f4e Mon Sep 17 00:00:00 2001 From: Martin Poirier Date: Mon, 28 Jan 2008 01:02:38 +0000 Subject: [PATCH] typo in text --- source/blender/src/transform.c | 8 ++++---- 1 file 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) {