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:
authorJoshua Leung <aligorith@gmail.com>2017-09-25 15:24:13 +0300
committerJoshua Leung <aligorith@gmail.com>2017-09-25 15:25:18 +0300
commitce54d25fa961d3021986f6b741c65f99db7bfd41 (patch)
treec771807fc89e89d63325ba57b82ad27696574462 /source/blender/makesrna/intern/rna_image_api.c
parent0d4e519b748c33f3f48fa4dcc4aa31ae398ed13a (diff)
Fix T52865: Improve wording of error message when saving packed images fails
Make it clear that the packed file could not be saved back out to disk at the specified path (e.g. destination directory doesn't exist).
Diffstat (limited to 'source/blender/makesrna/intern/rna_image_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_image_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_image_api.c b/source/blender/makesrna/intern/rna_image_api.c
index 5c706d9d8db..61f1edc0af5 100644
--- a/source/blender/makesrna/intern/rna_image_api.c
+++ b/source/blender/makesrna/intern/rna_image_api.c
@@ -67,7 +67,7 @@
static void rna_ImagePackedFile_save(ImagePackedFile *imapf, ReportList *reports)
{
if (writePackedFile(reports, imapf->filepath, imapf->packedfile, 0) != RET_OK) {
- BKE_reportf(reports, RPT_ERROR, "Image could not save packed file to '%s'",
+ BKE_reportf(reports, RPT_ERROR, "Could not save packed file to disk as '%s'",
imapf->filepath);
}
}