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:
authorTon Roosendaal <ton@blender.org>2008-07-13 18:49:07 +0400
committerTon Roosendaal <ton@blender.org>2008-07-13 18:49:07 +0400
commit59df4a4b3af7944848880b4f95386dc4bf6b8cbc (patch)
tree454237984a401514571c303a370f270b9df9900e /source/blender/src
parent751aa3e12172f980634959760e51f73b3d85c0a2 (diff)
Bugfix #14435
"(De)Select faces with material" (edit buttons) should also draw image window
Diffstat (limited to 'source/blender/src')
-rw-r--r--source/blender/src/buttons_editing.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/buttons_editing.c b/source/blender/src/buttons_editing.c
index 3863161017f..529a795a101 100644
--- a/source/blender/src/buttons_editing.c
+++ b/source/blender/src/buttons_editing.c
@@ -513,7 +513,6 @@ void do_common_editbuts(unsigned short event) // old name, is a mix of object an
} else {
editmesh_deselect_by_material(G.obedit->actcol-1);
}
- allqueue(REDRAWVIEW3D, 0);
}
else if ELEM(G.obedit->type, OB_CURVE, OB_SURF) {
nu= editNurb.first;
@@ -553,8 +552,9 @@ void do_common_editbuts(unsigned short event) // old name, is a mix of object an
nu= nu->next;
}
BIF_undo_push("Select material index");
- allqueue(REDRAWVIEW3D, 0);
}
+ allqueue(REDRAWIMAGE, 0);
+ allqueue(REDRAWVIEW3D, 0);
}
countall();
break;