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>2004-09-16 21:57:14 +0400
committerTon Roosendaal <ton@blender.org>2004-09-16 21:57:14 +0400
commite10bae596b3d9bb7ee9651c64d67e23e8fbd9b1a (patch)
tree04b479fd4ca0bf987c82763c44421c889643f8eb /source/blender/src/toolbox.c
parent2453774076fd7d5bb696b0bf89e6a691756ea0fd (diff)
Bug 1568
Wrong usage of B_NOP code in button events (xxxx | B_NOP), which is useles since it is defined as -1. Reminder for all: use a B_NOP if you want a button event not to be passed on to the event queues.
Diffstat (limited to 'source/blender/src/toolbox.c')
-rw-r--r--source/blender/src/toolbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/toolbox.c b/source/blender/src/toolbox.c
index b9dce318994..561eade7237 100644
--- a/source/blender/src/toolbox.c
+++ b/source/blender/src/toolbox.c
@@ -1724,7 +1724,7 @@ static TBitem tb_mesh_edit_edge[]= {
static TBitem tb_mesh_edit_face[]= {
{ 0, "Make Edge/Face|F", 'f', NULL},
{ 0, "Fill|Shift F", 'F', NULL},
-{ 0, "Beaty Fill|Alt F", TB_ALT|'f', NULL},
+{ 0, "Beautify Fill|Alt F", TB_ALT|'f', NULL},
{ 0, "SEPR", 0, NULL},
{ 0, "Convert to Triangles|Ctrl T", TB_CTRL|'t', NULL},
{ 0, "Convert to Quads|Alt J", TB_ALT|'j', NULL},