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:
authorSybren A. Stüvel <sybren@blender.org>2021-03-08 18:32:32 +0300
committerSybren A. Stüvel <sybren@blender.org>2021-03-08 19:20:23 +0300
commit6afe2d373a00a49a7a51cafec50d03ada0fe0743 (patch)
tree0009a22d59aecd99e4b5ba8e25430b1a2b9c217b
parenta6a8ca9212108de9a2fad2a67a86d81efdf5ada3 (diff)
Fix ID preview not updating in Asset Browser
Fix ID preview not updating in Asset Browser, by actually sending an explicit `NA_EDITED` along with the `NC_ASSET` notifier.
-rw-r--r--source/blender/editors/space_file/space_file.c1
-rw-r--r--source/blender/editors/util/ed_util_ops.cc4
2 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/editors/space_file/space_file.c b/source/blender/editors/space_file/space_file.c
index 4373bd88473..83bb8abf5d8 100644
--- a/source/blender/editors/space_file/space_file.c
+++ b/source/blender/editors/space_file/space_file.c
@@ -459,6 +459,7 @@ static void file_listener(const wmSpaceTypeListenerParams *params)
break;
case NA_ADDED:
case NA_REMOVED:
+ case NA_EDITED:
if (sfile->files && filelist_needs_reset_on_main_changes(sfile->files)) {
/* Full refresh of the file list if local asset data was changed. Refreshing this view
* is cheap and users expect this to be updated immediately. */
diff --git a/source/blender/editors/util/ed_util_ops.cc b/source/blender/editors/util/ed_util_ops.cc
index 5b2e1a16bc2..06f1b999d58 100644
--- a/source/blender/editors/util/ed_util_ops.cc
+++ b/source/blender/editors/util/ed_util_ops.cc
@@ -92,7 +92,7 @@ static int lib_id_load_custom_preview_exec(bContext *C, wmOperator *op)
BKE_previewimg_id_custom_set(id, path);
- WM_event_add_notifier(C, NC_ASSET, nullptr);
+ WM_event_add_notifier(C, NC_ASSET | NA_EDITED, nullptr);
return OPERATOR_FINISHED;
}
@@ -133,7 +133,7 @@ static int lib_id_generate_preview_exec(bContext *C, wmOperator *UNUSED(op))
}
UI_icon_render_id(C, nullptr, id, ICON_SIZE_PREVIEW, true);
- WM_event_add_notifier(C, NC_ASSET, nullptr);
+ WM_event_add_notifier(C, NC_ASSET | NA_EDITED, nullptr);
return OPERATOR_FINISHED;
}