[Bf-blender-cvs] [41945454f71] master: Correction to own previous commit: Add missing break

Julian Eisel noreply at git.blender.org
Thu Apr 29 13:38:20 CEST 2021


Commit: 41945454f712e6892b4e01e093ceeac13cf71a5c
Author: Julian Eisel
Date:   Thu Apr 29 13:36:04 2021 +0200
Branches: master
https://developer.blender.org/rB41945454f712e6892b4e01e093ceeac13cf71a5c

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.

===================================================================

M	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 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) {



More information about the Bf-blender-cvs mailing list