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:
authorCampbell Barton <ideasman42@gmail.com>2015-04-04 02:48:05 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-04-04 02:48:05 +0300
commit92c763283568415800319f8139aeb1002dee56a0 (patch)
treeac877dfcdc58bb73c6cc30ee5f0c5daaf08df379 /source/blender/editors/space_console
parent4a4aaabfa90273b4db36c131cdff320e44c8bec6 (diff)
Add missing break statements
Diffstat (limited to 'source/blender/editors/space_console')
-rw-r--r--source/blender/editors/space_console/console_ops.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_console/console_ops.c b/source/blender/editors/space_console/console_ops.c
index b3f5e81f154..b3149c1bbf4 100644
--- a/source/blender/editors/space_console/console_ops.c
+++ b/source/blender/editors/space_console/console_ops.c
@@ -1144,6 +1144,7 @@ static int console_modal_select(bContext *C, wmOperator *op, const wmEvent *even
console_cursor_set_exit(C, op);
return OPERATOR_FINISHED;
}
+ break;
case MOUSEMOVE:
console_modal_select_apply(C, op, event);
break;