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:
authorMatt Ebb <matt@mke3.net>2009-12-11 04:12:22 +0300
committerMatt Ebb <matt@mke3.net>2009-12-11 04:12:22 +0300
commit5244b7c21bc1807a11996dad9750289dab867795 (patch)
tree5b3277f816ec567c26361b56e3b5c3de0195eb65 /source/blender/editors
parentcff8de339d25d1723769d3c9183162005a3e9f68 (diff)
Various UV editor / notifier related fixes:
[#20336] Missing notifier - properties view does not update on UV unwrap [#20337] Shift select is not working in UV-editor island mode [#20338] Update automatically menu item has strange icon behavior [#20339] Select all will quit working in UV editor
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_buttons/space_buttons.c1
-rw-r--r--source/blender/editors/uvedit/uvedit_ops.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_buttons/space_buttons.c b/source/blender/editors/space_buttons/space_buttons.c
index 6c13a36cdf3..f6b376f6e8e 100644
--- a/source/blender/editors/space_buttons/space_buttons.c
+++ b/source/blender/editors/space_buttons/space_buttons.c
@@ -285,6 +285,7 @@ static void buttons_area_listener(ScrArea *sa, wmNotifier *wmn)
case NC_GEOM:
switch(wmn->data) {
case ND_SELECT:
+ case ND_DATA:
ED_area_tag_redraw(sa);
break;
}
diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c
index fb02f5100b6..3d58e7f03dc 100644
--- a/source/blender/editors/uvedit/uvedit_ops.c
+++ b/source/blender/editors/uvedit/uvedit_ops.c
@@ -904,7 +904,7 @@ static void select_linked(Scene *scene, Image *ima, EditMesh *em, float limit[2]
}
}
- if(!extend || hit) {
+ if(!extend && hit) {
for(a=0, efa= em->faces.first; efa; efa= efa->next, a++) {
tf = CustomData_em_get(&em->fdata, efa->data, CD_MTFACE);
if(flag[a])