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:
authorJulian Eisel <julian@blender.org>2021-04-29 14:36:04 +0300
committerJulian Eisel <julian@blender.org>2021-04-29 14:37:06 +0300
commit41945454f712e6892b4e01e093ceeac13cf71a5c (patch)
tree6c2a7fa74d63f23332d66da1947c65f190a28bc5 /source/blender/editors/space_file/space_file.c
parent88400f0c03a96f5c92e251ebc24b197da80707d5 (diff)
Correction to own previous commit: Add missing break
Small mistake in 88400f0c03a9. Not having this break would be harmless, but we can avoid some unnecessary work with it.
Diffstat (limited to 'source/blender/editors/space_file/space_file.c')
-rw-r--r--source/blender/editors/space_file/space_file.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_file/space_file.c b/source/blender/editors/space_file/space_file.c
index 4ad2e5c2fd2..4422a685af1 100644
--- a/source/blender/editors/space_file/space_file.c
+++ b/source/blender/editors/space_file/space_file.c
@@ -474,6 +474,7 @@ static void file_listener(const wmSpaceTypeListenerParams *params)
file_reset_filelist_showing_main_data(area, sfile);
break;
}
+ break;
}
case NC_ASSET: {
switch (wmn->action) {