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.
This commit is contained in:
@@ -467,6 +467,14 @@ static void file_listener(const wmSpaceTypeListenerParams *params)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
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: {
|
case NC_ASSET: {
|
||||||
switch (wmn->action) {
|
switch (wmn->action) {
|
||||||
case NA_SELECTED:
|
case NA_SELECTED:
|
||||||
|
Reference in New Issue
Block a user