From 5270462953ec0181f6f4d7ff67adf9d395f18a81 Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Tue, 4 Aug 2020 14:50:16 +0200 Subject: Fix T79234: Material preview does not update When changing the material while the properties editor temporarily isn't visible (e.g. because another editor is in full-screen or a different workspace is active), the preview wouldn't be updated on changes. Always trigger a material preview update on screen layout or editor type changes. --- source/blender/editors/space_buttons/space_buttons.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'source') diff --git a/source/blender/editors/space_buttons/space_buttons.c b/source/blender/editors/space_buttons/space_buttons.c index 0863cb835e4..dc34e56dc92 100644 --- a/source/blender/editors/space_buttons/space_buttons.c +++ b/source/blender/editors/space_buttons/space_buttons.c @@ -584,6 +584,10 @@ static void buttons_area_listener(wmWindow *UNUSED(win), if (wmn->data == ND_SPACE_PROPERTIES) { ED_area_tag_redraw(area); } + else if (wmn->data == ND_SPACE_CHANGED) { + ED_area_tag_redraw(area); + sbuts->preview = 1; + } break; case NC_ID: if (wmn->action == NA_RENAME) { @@ -624,6 +628,12 @@ static void buttons_area_listener(wmWindow *UNUSED(win), sbuts->preview = 1; } break; + case NC_SCREEN: + if (wmn->data == ND_LAYOUTSET) { + ED_area_tag_redraw(area); + sbuts->preview = 1; + } + break; #ifdef WITH_FREESTYLE case NC_LINESTYLE: ED_area_tag_redraw(area); -- cgit v1.2.3