fix for mistake in case insensitive image load.

This commit is contained in:
2011-05-31 09:55:50 +00:00
parent b434550edc
commit f51c9fa496

View File

@@ -89,7 +89,7 @@ def load_image(imagepath,
for filepath_test in variants: for filepath_test in variants:
if ncase_cmp: if ncase_cmp:
ncase_variants = filepath_test, bpy.path.resolve_ncase(filepath) ncase_variants = filepath_test, bpy.path.resolve_ncase(filepath_test)
else: else:
ncase_variants = (filepath_test, ) ncase_variants = (filepath_test, )