From 88400f0c03a96f5c92e251ebc24b197da80707d5 Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Thu, 29 Apr 2021 13:15:42 +0200 Subject: Fix incorrect sorting in Asset Browser after renaming local asset When renaming a data-block that is an asset, while the asset is visible in the Asset Browser ("Current File" asset library), the list wouldn't re-sort items, breaking the alphabetical sorting. This was easily possible while changing the data-block name throught the Asset Browser's sidebar, while in the "Current File" asset library. --- source/blender/editors/space_file/space_file.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'source/blender/editors/space_file/space_file.c') diff --git a/source/blender/editors/space_file/space_file.c b/source/blender/editors/space_file/space_file.c index 993b1d9b69c..4ad2e5c2fd2 100644 --- a/source/blender/editors/space_file/space_file.c +++ b/source/blender/editors/space_file/space_file.c @@ -467,6 +467,14 @@ static void file_listener(const wmSpaceTypeListenerParams *params) break; } break; + case NC_ID: { + switch (wmn->action) { + case NA_RENAME: + /* Force list to update sorting (with a full reset for now). */ + file_reset_filelist_showing_main_data(area, sfile); + break; + } + } case NC_ASSET: { switch (wmn->action) { case NA_SELECTED: -- cgit v1.2.3