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:
authorDalai Felinto <dfelinto@gmail.com>2014-02-19 18:29:51 +0400
committerDalai Felinto <dfelinto@gmail.com>2014-02-19 18:31:36 +0400
commitd85d117b32523db4c57113ab58b95947edf9c187 (patch)
tree6a58f7a38d45bb5fc522cc76df01de38b1719c36 /source/blender/editors/space_buttons/space_buttons.c
parenta9386400365c3cdb7642e0879b152f5e3dee30ee (diff)
fix T38721 Vertex Group pop menu (CTRL+G) Set Active Group not updating Vertex Groups Panel
I set ND_VERTEX_GROUP to update the buttons. Reviewed by: Lukas Toenne
Diffstat (limited to 'source/blender/editors/space_buttons/space_buttons.c')
-rw-r--r--source/blender/editors/space_buttons/space_buttons.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_buttons/space_buttons.c b/source/blender/editors/space_buttons/space_buttons.c
index d32be692558..ea3f34b4b86 100644
--- a/source/blender/editors/space_buttons/space_buttons.c
+++ b/source/blender/editors/space_buttons/space_buttons.c
@@ -311,6 +311,7 @@ static void buttons_area_listener(bScreen *UNUSED(sc), ScrArea *sa, wmNotifier *
switch (wmn->data) {
case ND_SELECT:
case ND_DATA:
+ case ND_VERTEX_GROUP:
ED_area_tag_redraw(sa);
break;
}