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...
This commit is contained in:
Bastien Montagne 2017-07-06 11:52:44 +02:00
parent 9c3f1ad003
commit bdd814d87d
Notes: blender-bot 2023-02-14 07:07:16 +01:00
Referenced by issue #51015, Pack all into blend automatically leaves checkbox enabled.
1 changed files with 0 additions and 1 deletions

View File

@ -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;
}