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>2005-07-19 14:50:13 +0400
committerTon Roosendaal <ton@blender.org>2005-07-19 14:50:13 +0400
commit5f22838822b6cadc549380ca6ed74f4f9f9e489f (patch)
tree1b52eaf578480eda77f03818d39c657829e524a9 /source/blender/blenkernel/intern/exotic.c
parent8fa42457ca57483b25a3f6aa7c91d1f6dc2173c8 (diff)
Bugfix #2818
On importing a file (dxf for example), the active filename got set to the imported filename, causing save-over to use that too. Tracked it down to be a very old feature... better to remove this, doesn't work according specs!
Diffstat (limited to 'source/blender/blenkernel/intern/exotic.c')
-rw-r--r--source/blender/blenkernel/intern/exotic.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/source/blender/blenkernel/intern/exotic.c b/source/blender/blenkernel/intern/exotic.c
index 25e3e833e32..7f0aee18664 100644
--- a/source/blender/blenkernel/intern/exotic.c
+++ b/source/blender/blenkernel/intern/exotic.c
@@ -2451,11 +2451,7 @@ int BKE_read_exotic(char *name)
}
}
}
-
- if (retval == 1) {
- strcpy(G.sce, name);
- }
-
+
return (retval);
}