[Bf-blender-cvs] [bdd814d87da] master: Fix T51015: Pack all into blend automatically leaves checkbox enabled.

Bastien Montagne noreply at git.blender.org
Thu Jul 6 11:55:07 CEST 2017


Commit: bdd814d87da3374c008cb3a7f808d8c51cf00707
Author: Bastien Montagne
Date:   Thu Jul 6 11:52:44 2017 +0200
Branches: master
https://developer.blender.org/rBbdd814d87da3374c008cb3a7f808d8c51cf00707

Fix T51015: Pack all into blend automatically leaves checkbox enabled.

Makes absolutely no sense to forcefully enable that automatic packing option here,
user can do this himself if they likes, from the very same menu...

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

M	source/blender/editors/space_info/info_ops.c

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

diff --git a/source/blender/editors/space_info/info_ops.c b/source/blender/editors/space_info/info_ops.c
index 0e427623840..b87a0de23b9 100644
--- a/source/blender/editors/space_info/info_ops.c
+++ b/source/blender/editors/space_info/info_ops.c
@@ -162,7 +162,6 @@ static int pack_all_exec(bContext *C, wmOperator *op)
 	Main *bmain = CTX_data_main(C);
 	
 	packAll(bmain, op->reports, true);
-	G.fileflags |= G_AUTOPACK;
 	
 	return OPERATOR_FINISHED;
 }




More information about the Bf-blender-cvs mailing list