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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2012-08-31 16:08:08 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2012-08-31 16:08:08 +0400
commit533192013fe8983d7e2b6d6b2b58dfe87d2b319a (patch)
tree01d5d69d183f51f46a636c28fa6aa052904f227f /source/blender/editors/uvedit
parent0b4dfa1fcb2e4b43923c219ed59aaf31bbf0fed9 (diff)
Fix #32447: mouse selection in uv editor is now no longer registerd as last
operator, same as 3d view.
Diffstat (limited to 'source/blender/editors/uvedit')
-rw-r--r--source/blender/editors/uvedit/uvedit_ops.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c
index 6f3e6bee850..b922647f3e6 100644
--- a/source/blender/editors/uvedit/uvedit_ops.c
+++ b/source/blender/editors/uvedit/uvedit_ops.c
@@ -2056,7 +2056,7 @@ static void UV_OT_select(wmOperatorType *ot)
ot->name = "Select";
ot->description = "Select UV vertices";
ot->idname = "UV_OT_select";
- ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
+ ot->flag = OPTYPE_UNDO;
/* api callbacks */
ot->exec = select_exec;
@@ -2101,7 +2101,7 @@ static void UV_OT_select_loop(wmOperatorType *ot)
ot->name = "Loop Select";
ot->description = "Select a loop of connected UV vertices";
ot->idname = "UV_OT_select_loop";
- ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
+ ot->flag = OPTYPE_UNDO;
/* api callbacks */
ot->exec = select_loop_exec;
@@ -2203,7 +2203,7 @@ static void UV_OT_select_linked_pick(wmOperatorType *ot)
ot->name = "Select Linked Pick";
ot->description = "Select all UV vertices linked under the mouse";
ot->idname = "UV_OT_select_linked_pick";
- ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
+ ot->flag = OPTYPE_UNDO;
/* api callbacks */
ot->invoke = select_linked_pick_invoke;