From ca9db6ef25fb327629556f72534d472d2e8ac832 Mon Sep 17 00:00:00 2001 From: Ton Roosendaal Date: Thu, 15 Nov 2007 13:38:35 +0000 Subject: [PATCH] Bugfix #7631 Outliner: change name of library path to become relative gave incorrect warning. --- source/blender/src/outliner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); }