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>2012-04-02 13:07:02 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-02 13:07:02 +0400
commit48059cc32968e008b809571ccb80ffdd5f876ce6 (patch)
tree3b8a0a73d536c0145ada615da2aac53e70509cd8 /source/blender/editors/uvedit
parent7d9f0232df771b7dc9f5fd33ab0d0a9b7b6f1ad6 (diff)
fix problem with select invert - flush selection.
previously this wasnt needed because doing an undo push would flush the selection.
Diffstat (limited to 'source/blender/editors/uvedit')
-rw-r--r--source/blender/editors/uvedit/uvedit_ops.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c
index 3f4352d8ab3..05b3ba6ea07 100644
--- a/source/blender/editors/uvedit/uvedit_ops.c
+++ b/source/blender/editors/uvedit/uvedit_ops.c
@@ -1620,6 +1620,7 @@ static void select_all_perform(bContext *C, int action)
break;
case SEL_INVERT:
EDBM_select_swap(em);
+ EDBM_selectmode_flush(em);
break;
}
}