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:
authorTon Roosendaal <ton@blender.org>2013-03-27 17:28:51 +0400
committerTon Roosendaal <ton@blender.org>2013-03-27 17:28:51 +0400
commit92689be7a0b6c5389ac1f4f0a453da3dfb47b37c (patch)
tree40816e5ff8d571ef350b1c21752305e50d744b65 /source/blender/blenkernel/intern/packedFile.c
parent79b8d890273c20b6689c6246100ba39a5c2857e3 (diff)
Bug report #34775
Packed file print was misleading (no files packed). It should be "no new files packed".
Diffstat (limited to 'source/blender/blenkernel/intern/packedFile.c')
-rw-r--r--source/blender/blenkernel/intern/packedFile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/packedFile.c b/source/blender/blenkernel/intern/packedFile.c
index 5a02d929b76..af67ada7765 100644
--- a/source/blender/blenkernel/intern/packedFile.c
+++ b/source/blender/blenkernel/intern/packedFile.c
@@ -263,7 +263,7 @@ void packAll(Main *bmain, ReportList *reports)
}
if (tot == 0)
- BKE_report(reports, RPT_INFO, "No files have been packed");
+ BKE_report(reports, RPT_INFO, "No new files have been packed");
else
BKE_reportf(reports, RPT_INFO, "Packed %d files", tot);