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:
authorJulian Eisel <julian@blender.org>2021-11-03 20:07:36 +0300
committerJulian Eisel <julian@blender.org>2021-11-03 20:07:36 +0300
commite10caf6fe3c23def05d35c5a5bad58165cfa77fd (patch)
tree16a6a32de4c75fc8143b1fe97f31633b646dd6f6 /release/scripts/startup/bl_operators
parenta7672caeb255e3c47071edfa42ef9805b64fca0b (diff)
parenta827864e6b1ee34af759dea61f832076c0e67c44 (diff)
Merge remote-tracking branch 'origin/blender-v3.0-release'
Diffstat (limited to 'release/scripts/startup/bl_operators')
-rw-r--r--release/scripts/startup/bl_operators/file.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_operators/file.py b/release/scripts/startup/bl_operators/file.py
index 672a4170325..4c53279427a 100644
--- a/release/scripts/startup/bl_operators/file.py
+++ b/release/scripts/startup/bl_operators/file.py
@@ -43,22 +43,30 @@ class WM_OT_previews_batch_generate(Operator):
files: CollectionProperty(
type=OperatorFileListElement,
options={'HIDDEN', 'SKIP_SAVE'},
+ name="",
+ description="Collection of file paths with common `directory` root",
)
directory: StringProperty(
maxlen=1024,
subtype='FILE_PATH',
options={'HIDDEN', 'SKIP_SAVE'},
+ name="",
+ description="Root path of all files listed in `files` collection",
)
# Show only images/videos, and directories!
filter_blender: BoolProperty(
default=True,
options={'HIDDEN', 'SKIP_SAVE'},
+ name="",
+ description="Show Blender files in the File Browser",
)
filter_folder: BoolProperty(
default=True,
options={'HIDDEN', 'SKIP_SAVE'},
+ name="",
+ description="Show folders in the File Browser",
)
# -----------