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 'system_demo_mode/__init__.py')
-rw-r--r--system_demo_mode/__init__.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/system_demo_mode/__init__.py b/system_demo_mode/__init__.py
index e4ae9e73..ce2537c5 100644
--- a/system_demo_mode/__init__.py
+++ b/system_demo_mode/__init__.py
@@ -56,11 +56,11 @@ class DemoModeSetup(bpy.types.Operator):
# to the class instance from the operator settings before calling.
# these are used to create the file list.
- filepath = StringProperty(
- name="File Path",
- description="Filepath used for importing the file",
+ directory = StringProperty(
+ name="Search Path",
+ description="directory used for importing the file",
maxlen=1024,
- subtype='FILE_PATH',
+ subtype='DIR_PATH',
)
random_order = BoolProperty(
name="Random Order",
@@ -139,8 +139,8 @@ class DemoModeSetup(bpy.types.Operator):
def execute(self, context):
from . import config
- keywords = self.as_keywords(ignore=("filepath", "random_order", "run", "exit"))
- cfg_str, dirpath = config.as_string(self.filepath,
+ keywords = self.as_keywords(ignore=("directory", "random_order", "run", "exit"))
+ cfg_str, dirpath = config.as_string(self.directory,
self.random_order,
self.exit,
**keywords)