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_text
parent4a4aaabfa90273b4db36c131cdff320e44c8bec6 (diff)
Add missing break statements
Diffstat (limited to 'source/blender/editors/space_text')
-rw-r--r--source/blender/editors/space_text/text_ops.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_text/text_ops.c b/source/blender/editors/space_text/text_ops.c
index 6fb5706bfdf..9d517b20f01 100644
--- a/source/blender/editors/space_text/text_ops.c
+++ b/source/blender/editors/space_text/text_ops.c
@@ -2676,6 +2676,7 @@ static int text_set_selection_modal(bContext *C, wmOperator *op, const wmEvent *
text_cursor_set_exit(C, op);
return OPERATOR_FINISHED;
}
+ break;
case TIMER:
case MOUSEMOVE:
text_cursor_set_apply(C, op, event);