Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'archipack/archipack_preset.py')
-rw-r--r--archipack/archipack_preset.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/archipack/archipack_preset.py b/archipack/archipack_preset.py
index 3092e494..6dd39b28 100644
--- a/archipack/archipack_preset.py
+++ b/archipack/archipack_preset.py
@@ -235,19 +235,19 @@ class PresetMenu():
self.imageList.append(self.default_image.filepath_raw)
return
dir_path = os.path.dirname(os.path.realpath(__file__))
- sub_path = "presets" + os.path.sep + "missing.png"
+ sub_path = "_presets" + os.path.sep + "missing.png"
filepath = os.path.join(dir_path, sub_path)
if os.path.exists(filepath) and os.path.isfile(filepath):
self.default_image = bpy.data.images.load(filepath=filepath)
self.imageList.append(self.default_image.filepath_raw)
if self.default_image is None:
- raise EnvironmentError("archipack/presets/missing.png not found")
+ raise EnvironmentError("archipack/_presets/missing.png not found")
def scan_files(self, category):
file_list = []
# load default presets
dir_path = os.path.dirname(os.path.realpath(__file__))
- sub_path = "presets" + os.path.sep + category
+ sub_path = "_presets" + os.path.sep + category
presets_path = os.path.join(dir_path, sub_path)
if os.path.exists(presets_path):
file_list += [presets_path + os.path.sep + f[:-3]