From 41945454f712e6892b4e01e093ceeac13cf71a5c Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Thu, 29 Apr 2021 13:36:04 +0200 Subject: 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. --- source/blender/editors/space_file/space_file.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/editors/space_file') 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) { -- cgit v1.2.3