fake-bpy-module 20241228__py3-none-any.whl → 20241229__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bpy/__init__.pyi +1 -1
- bpy/types/__init__.pyi +208 -223
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20241228.dist-info → fake_bpy_module-20241229.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241228.dist-info → fake_bpy_module-20241229.dist-info}/RECORD +10 -10
- freestyle/utils/__init__.pyi +1 -1
- gpu_extras/batch/__init__.pyi +2 -3
- {fake_bpy_module-20241228.dist-info → fake_bpy_module-20241229.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241228.dist-info → fake_bpy_module-20241229.dist-info}/top_level.txt +0 -0
|
@@ -118,7 +118,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, bpy.types.Operator):
|
|
|
118
118
|
|
|
119
119
|
def draw_ui_list(
|
|
120
120
|
layout: bpy.types.UILayout,
|
|
121
|
-
context: bpy.types.Context
|
|
121
|
+
context: bpy.types.Context,
|
|
122
122
|
class_name: str = "UI_UL_list",
|
|
123
123
|
*,
|
|
124
124
|
unique_id: str,
|
|
@@ -134,7 +134,7 @@ def draw_ui_list(
|
|
|
134
134
|
:param layout: UILayout to draw the list in.
|
|
135
135
|
:type layout: bpy.types.UILayout
|
|
136
136
|
:param context: Blender context to get the list data from.
|
|
137
|
-
:type context: bpy.types.Context
|
|
137
|
+
:type context: bpy.types.Context
|
|
138
138
|
:param class_name: Name of the UIList class to draw. The default is the UIList class that ships with Blender.
|
|
139
139
|
:type class_name: str
|
|
140
140
|
:param unique_id: Unique identifier to differentiate this from other UI lists.
|
bpy/__init__.pyi
CHANGED