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/editors/space_text/text_ops.c')
-rw-r--r--source/blender/editors/space_text/text_ops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_text/text_ops.c b/source/blender/editors/space_text/text_ops.c
index 8230da838e7..de26fa1f8ca 100644
--- a/source/blender/editors/space_text/text_ops.c
+++ b/source/blender/editors/space_text/text_ops.c
@@ -2566,10 +2566,10 @@ static void text_cursor_set_to_pos(SpaceText *st, ARegion *ar, int x, int y, int
y-= txt_get_span(text->lines.first, *linep) - st->top;
if (y>0) {
- while (y-- != 0) if((*linep)->next) *linep= (*linep)->next;
+ while (y-- != 0) if ((*linep)->next) *linep= (*linep)->next;
}
else if (y<0) {
- while (y++ != 0) if((*linep)->prev) *linep= (*linep)->prev;
+ while (y++ != 0) if ((*linep)->prev) *linep= (*linep)->prev;
}
@@ -2856,7 +2856,7 @@ static int text_insert_invoke(bContext *C, wmOperator *op, wmEvent *event)
{
int ret;
- // if(!RNA_struct_property_is_set(op->ptr, "text")) { /* always set from keymap XXX */
+ // if (!RNA_struct_property_is_set(op->ptr, "text")) { /* always set from keymap XXX */
if (!RNA_string_length(op->ptr, "text")) {
/* if alt/ctrl/super are pressed pass through */
if (event->ctrl || event->oskey) {