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:
-rw-r--r--release/scripts/modules/bpy/utils.py8
-rw-r--r--release/scripts/modules/bpy_types.py3
2 files changed, 9 insertions, 2 deletions
diff --git a/release/scripts/modules/bpy/utils.py b/release/scripts/modules/bpy/utils.py
index b6fc221217b..1e08196e07a 100644
--- a/release/scripts/modules/bpy/utils.py
+++ b/release/scripts/modules/bpy/utils.py
@@ -271,8 +271,12 @@ def preset_paths(subdir):
"""
Returns a list of paths for a specific preset.
"""
-
- return (_os.path.join(_presets, subdir), )
+ dirs = []
+ for path in script_paths("presets"):
+ directory = _os.path.join(path, subdir)
+ if _os.path.isdir(directory):
+ dirs.append(directory)
+ return dirs
def smpte_from_seconds(time, fps=None):
diff --git a/release/scripts/modules/bpy_types.py b/release/scripts/modules/bpy_types.py
index 80309b0d91e..261165d8830 100644
--- a/release/scripts/modules/bpy_types.py
+++ b/release/scripts/modules/bpy_types.py
@@ -739,6 +739,9 @@ class Menu(StructRNA, _GenericUI, metaclass=RNAMeta):
import bpy.utils
layout = self.layout
+
+ if not searchpaths:
+ layout.label("* Missing Paths *")
# collect paths
files = []