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:
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 e7f9584526b..dcbdf5758b1 100644
--- a/source/blender/src/toolbox.c
+++ b/source/blender/src/toolbox.c
@@ -1322,13 +1322,13 @@ static void tb_do_transform(void *arg, int event)
else G.scene->proportional= 1;
break;
case 10:
- docentre(0);
+ docenter(0);
break;
case 11:
- docentre_new();
+ docenter_new();
break;
case 12:
- docentre_cursor();
+ docenter_cursor();
break;
}
allqueue(REDRAWVIEW3D, 0);
@@ -1706,7 +1706,7 @@ static uiBlock *tb_makemenu(void *arg)
if(U.uiflag & USER_PLAINMENUS)
uiBlockSetDirection(block, UI_RIGHT);
else
- uiBlockSetDirection(block, UI_RIGHT|UI_CENTRE);
+ uiBlockSetDirection(block, UI_RIGHT|UI_CENTER);
return block;
}