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 'blenderkit/download.py')
-rw-r--r--blenderkit/download.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/blenderkit/download.py b/blenderkit/download.py
index 37b2c8e6..366081ca 100644
--- a/blenderkit/download.py
+++ b/blenderkit/download.py
@@ -815,7 +815,7 @@ class BlenderkitKillDownloadOperator(bpy.types.Operator):
"""Kill a download."""
bl_idname = "scene.blenderkit_download_kill"
bl_label = "BlenderKit Kill Asset Download"
- bl_options = {'REGISTER', 'UNDO'}
+ bl_options = {'REGISTER', 'INTERNAL'}
thread_index: IntProperty(name="Thread index", description='index of the thread to kill', default=-1)
@@ -831,7 +831,8 @@ class BlenderkitDownloadOperator(bpy.types.Operator):
"""Download and link asset to scene. Only link if asset already available locally."""
bl_idname = "scene.blenderkit_download"
bl_label = "BlenderKit Asset Download"
- bl_options = {'REGISTER', 'UNDO'}
+ bl_options = {'REGISTER', 'UNDO', 'INTERNAL'}
+
asset_type: EnumProperty(
name="Type",