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>2007-11-15 16:38:35 +0300
committerTon Roosendaal <ton@blender.org>2007-11-15 16:38:35 +0300
commitca9db6ef25fb327629556f72534d472d2e8ac832 (patch)
tree0e671d0c215733591c790abee5cd2d72a82e3a7a /source/blender/src/outliner.c
parentc6667c53e3134f06ce208094e67fb0081ef8d3e7 (diff)
Bugfix #7631
Outliner: change name of library path to become relative gave incorrect warning.
Diffstat (limited to 'source/blender/src/outliner.c')
-rw-r--r--source/blender/src/outliner.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/outliner.c b/source/blender/src/outliner.c
index aa5fd0d409b..3e969e4ca9c 100644
--- a/source/blender/src/outliner.c
+++ b/source/blender/src/outliner.c
@@ -3379,7 +3379,7 @@ static void namebutton_cb(void *tep, void *oldnamep)
if (te->idcode == ID_LI) {
char expanded[FILE_MAXDIR + FILE_MAXFILE];
BLI_strncpy(expanded, ((Library *)tselem->id)->name, FILE_MAXDIR + FILE_MAXFILE);
-
+ BLI_convertstringcode(expanded, G.sce, G.scene->r.cfra);
if (!BLI_exists(expanded)) {
error("This path does not exist, correct this before saving");
}