fake-bpy-module 20250521__py3-none-any.whl → 20250602__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.
- _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
- bl_ui/node_add_menu/__init__.pyi +3 -3
- bl_ui/node_add_menu_geometry/__init__.pyi +2 -2
- bl_ui/space_dopesheet/__init__.pyi +24 -0
- bl_ui/space_graph/__init__.pyi +24 -0
- bl_ui/space_image/__init__.pyi +35 -0
- bl_ui/space_nla/__init__.pyi +24 -0
- bl_ui/space_sequencer/__init__.pyi +48 -0
- bl_ui/space_spreadsheet/__init__.pyi +33 -19
- bl_ui/space_toolsystem_common/__init__.pyi +17 -0
- bpy/_typing/rna_enums/__init__.pyi +1 -1
- bpy/app/timers/__init__.pyi +0 -9
- bpy/ops/node/__init__.pyi +36 -0
- bpy/ops/screen/__init__.pyi +1 -1
- bpy/ops/sequencer/__init__.pyi +60 -45
- bpy/ops/wm/__init__.pyi +2 -2
- bpy/types/__init__.pyi +37943 -31866
- {fake_bpy_module-20250521.dist-info → fake_bpy_module-20250602.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250521.dist-info → fake_bpy_module-20250602.dist-info}/RECORD +24 -24
- {fake_bpy_module-20250521.dist-info → fake_bpy_module-20250602.dist-info}/WHEEL +1 -1
- gpu/__init__.pyi +35 -3
- gpu/shader/__init__.pyi +16 -0
- gpu/types/__init__.pyi +1 -1
- {fake_bpy_module-20250521.dist-info → fake_bpy_module-20250602.dist-info}/top_level.txt +0 -0
|
@@ -15,7 +15,7 @@ def wheel_version_from_filename_for_cmp(filename):
|
|
|
15
15
|
the trailing text is compared as a string which is not technically correct
|
|
16
16
|
however this is not a priority to support since scripts should only be including stable releases,
|
|
17
17
|
so comparing the first 3 numbers is sufficient. The trailing string is just a tie breaker in the
|
|
18
|
-
unlikely event it differs.If supporting the full spec, comparing: "1.1.dev6" with "1.1.6rc6" for
|
|
18
|
+
unlikely event it differs.If supporting the full spec, comparing: "1.1.dev6" with "1.1.6rc6" for example
|
|
19
19
|
we could support this doesn't seem especially important as extensions should use major releases.
|
|
20
20
|
|
|
21
21
|
"""
|
bl_ui/node_add_menu/__init__.pyi
CHANGED
|
@@ -37,12 +37,12 @@ def add_foreach_geometry_element_zone(layout, label): ...
|
|
|
37
37
|
def add_node_type(layout, node_type, *, label=None, poll=None, search_weight=0.0):
|
|
38
38
|
"""Add a node type to a menu."""
|
|
39
39
|
|
|
40
|
+
def add_node_type_with_outputs(
|
|
41
|
+
context, layout, node_type, subnames, *, label=None, search_weight=0.0
|
|
42
|
+
): ...
|
|
40
43
|
def add_node_type_with_searchable_enum(
|
|
41
44
|
context, layout, node_idname, property_name, search_weight=0.0
|
|
42
45
|
): ...
|
|
43
|
-
def add_node_type_with_subnames(
|
|
44
|
-
context, layout, node_type, subnames, *, label=None, search_weight=0.0
|
|
45
|
-
): ...
|
|
46
46
|
def add_repeat_zone(layout, label): ...
|
|
47
47
|
def add_simulation_zone(layout, label):
|
|
48
48
|
"""Add simulation zone to a menu."""
|
|
@@ -50,10 +50,10 @@ class NODE_MT_category_GEO_OUTPUT(bpy.types.Menu):
|
|
|
50
50
|
:rtype: typing.Any
|
|
51
51
|
"""
|
|
52
52
|
|
|
53
|
-
def draw(self,
|
|
53
|
+
def draw(self, context):
|
|
54
54
|
"""
|
|
55
55
|
|
|
56
|
-
:param
|
|
56
|
+
:param context:
|
|
57
57
|
"""
|
|
58
58
|
|
|
59
59
|
class NODE_MT_category_GEO_POINT(bpy.types.Menu):
|
|
@@ -3,6 +3,7 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import bl_ui.properties_data_grease_pencil
|
|
6
|
+
import bl_ui.space_toolsystem_common
|
|
6
7
|
import bpy.types
|
|
7
8
|
import rna_prop_ui
|
|
8
9
|
|
|
@@ -694,6 +695,29 @@ class DOPESHEET_PT_grease_pencil_mode(
|
|
|
694
695
|
:param context:
|
|
695
696
|
"""
|
|
696
697
|
|
|
698
|
+
class DOPESHEET_PT_playhead_snapping(
|
|
699
|
+
bl_ui.space_toolsystem_common.PlayheadSnappingPanel, bpy.types.Panel
|
|
700
|
+
):
|
|
701
|
+
bl_label: typing.Any
|
|
702
|
+
bl_region_type: typing.Any
|
|
703
|
+
bl_rna: typing.Any
|
|
704
|
+
bl_space_type: typing.Any
|
|
705
|
+
id_data: typing.Any
|
|
706
|
+
|
|
707
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
708
|
+
"""
|
|
709
|
+
|
|
710
|
+
:return: The RNA type or default when not found.
|
|
711
|
+
:rtype: bpy.types.Struct
|
|
712
|
+
"""
|
|
713
|
+
|
|
714
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
715
|
+
"""
|
|
716
|
+
|
|
717
|
+
:return: The class or default when not found.
|
|
718
|
+
:rtype: typing.Any
|
|
719
|
+
"""
|
|
720
|
+
|
|
697
721
|
class DOPESHEET_PT_proportional_edit(bpy.types.Panel):
|
|
698
722
|
bl_label: typing.Any
|
|
699
723
|
bl_region_type: typing.Any
|
bl_ui/space_graph/__init__.pyi
CHANGED
|
@@ -3,6 +3,7 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import bl_ui.space_dopesheet
|
|
6
|
+
import bl_ui.space_toolsystem_common
|
|
6
7
|
import bpy.types
|
|
7
8
|
|
|
8
9
|
class GRAPH_HT_header(bpy.types.Header):
|
|
@@ -489,6 +490,29 @@ class GRAPH_PT_filters(
|
|
|
489
490
|
:param context:
|
|
490
491
|
"""
|
|
491
492
|
|
|
493
|
+
class GRAPH_PT_playhead_snapping(
|
|
494
|
+
bl_ui.space_toolsystem_common.PlayheadSnappingPanel, bpy.types.Panel
|
|
495
|
+
):
|
|
496
|
+
bl_label: typing.Any
|
|
497
|
+
bl_region_type: typing.Any
|
|
498
|
+
bl_rna: typing.Any
|
|
499
|
+
bl_space_type: typing.Any
|
|
500
|
+
id_data: typing.Any
|
|
501
|
+
|
|
502
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
503
|
+
"""
|
|
504
|
+
|
|
505
|
+
:return: The RNA type or default when not found.
|
|
506
|
+
:rtype: bpy.types.Struct
|
|
507
|
+
"""
|
|
508
|
+
|
|
509
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
510
|
+
"""
|
|
511
|
+
|
|
512
|
+
:return: The class or default when not found.
|
|
513
|
+
:rtype: typing.Any
|
|
514
|
+
"""
|
|
515
|
+
|
|
492
516
|
class GRAPH_PT_proportional_edit(bpy.types.Panel):
|
|
493
517
|
bl_label: typing.Any
|
|
494
518
|
bl_region_type: typing.Any
|
bl_ui/space_image/__init__.pyi
CHANGED
|
@@ -1045,6 +1045,41 @@ class IMAGE_PT_overlay_image(bpy.types.Panel):
|
|
|
1045
1045
|
:param context:
|
|
1046
1046
|
"""
|
|
1047
1047
|
|
|
1048
|
+
class IMAGE_PT_overlay_render_guides(bpy.types.Panel):
|
|
1049
|
+
bl_label: typing.Any
|
|
1050
|
+
bl_parent_id: typing.Any
|
|
1051
|
+
bl_region_type: typing.Any
|
|
1052
|
+
bl_rna: typing.Any
|
|
1053
|
+
bl_space_type: typing.Any
|
|
1054
|
+
id_data: typing.Any
|
|
1055
|
+
|
|
1056
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1057
|
+
"""
|
|
1058
|
+
|
|
1059
|
+
:return: The RNA type or default when not found.
|
|
1060
|
+
:rtype: bpy.types.Struct
|
|
1061
|
+
"""
|
|
1062
|
+
|
|
1063
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1064
|
+
"""
|
|
1065
|
+
|
|
1066
|
+
:return: The class or default when not found.
|
|
1067
|
+
:rtype: typing.Any
|
|
1068
|
+
"""
|
|
1069
|
+
|
|
1070
|
+
def draw(self, context):
|
|
1071
|
+
"""
|
|
1072
|
+
|
|
1073
|
+
:param context:
|
|
1074
|
+
"""
|
|
1075
|
+
|
|
1076
|
+
@classmethod
|
|
1077
|
+
def poll(cls, context):
|
|
1078
|
+
"""
|
|
1079
|
+
|
|
1080
|
+
:param context:
|
|
1081
|
+
"""
|
|
1082
|
+
|
|
1048
1083
|
class IMAGE_PT_overlay_uv_display(bpy.types.Panel):
|
|
1049
1084
|
bl_label: typing.Any
|
|
1050
1085
|
bl_parent_id: typing.Any
|
bl_ui/space_nla/__init__.pyi
CHANGED
|
@@ -3,6 +3,7 @@ import collections.abc
|
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import bl_ui.space_dopesheet
|
|
6
|
+
import bl_ui.space_toolsystem_common
|
|
6
7
|
import bpy.types
|
|
7
8
|
|
|
8
9
|
class NLA_HT_header(bpy.types.Header):
|
|
@@ -421,6 +422,29 @@ class NLA_PT_filters(bl_ui.space_dopesheet.DopesheetFilterPopoverBase, bpy.types
|
|
|
421
422
|
:param context:
|
|
422
423
|
"""
|
|
423
424
|
|
|
425
|
+
class NLA_PT_playhead_snapping(
|
|
426
|
+
bl_ui.space_toolsystem_common.PlayheadSnappingPanel, bpy.types.Panel
|
|
427
|
+
):
|
|
428
|
+
bl_label: typing.Any
|
|
429
|
+
bl_region_type: typing.Any
|
|
430
|
+
bl_rna: typing.Any
|
|
431
|
+
bl_space_type: typing.Any
|
|
432
|
+
id_data: typing.Any
|
|
433
|
+
|
|
434
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
435
|
+
"""
|
|
436
|
+
|
|
437
|
+
:return: The RNA type or default when not found.
|
|
438
|
+
:rtype: bpy.types.Struct
|
|
439
|
+
"""
|
|
440
|
+
|
|
441
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
442
|
+
"""
|
|
443
|
+
|
|
444
|
+
:return: The class or default when not found.
|
|
445
|
+
:rtype: typing.Any
|
|
446
|
+
"""
|
|
447
|
+
|
|
424
448
|
class NLA_PT_snapping(bpy.types.Panel):
|
|
425
449
|
bl_label: typing.Any
|
|
426
450
|
bl_region_type: typing.Any
|
|
@@ -758,6 +758,31 @@ class SEQUENCER_MT_strip_effect(bpy.types.Menu):
|
|
|
758
758
|
:param _context:
|
|
759
759
|
"""
|
|
760
760
|
|
|
761
|
+
class SEQUENCER_MT_strip_effect_change(bpy.types.Menu):
|
|
762
|
+
bl_label: typing.Any
|
|
763
|
+
bl_rna: typing.Any
|
|
764
|
+
id_data: typing.Any
|
|
765
|
+
|
|
766
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
767
|
+
"""
|
|
768
|
+
|
|
769
|
+
:return: The RNA type or default when not found.
|
|
770
|
+
:rtype: bpy.types.Struct
|
|
771
|
+
"""
|
|
772
|
+
|
|
773
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
774
|
+
"""
|
|
775
|
+
|
|
776
|
+
:return: The class or default when not found.
|
|
777
|
+
:rtype: typing.Any
|
|
778
|
+
"""
|
|
779
|
+
|
|
780
|
+
def draw(self, context):
|
|
781
|
+
"""
|
|
782
|
+
|
|
783
|
+
:param context:
|
|
784
|
+
"""
|
|
785
|
+
|
|
761
786
|
class SEQUENCER_MT_strip_input(bpy.types.Menu):
|
|
762
787
|
bl_label: typing.Any
|
|
763
788
|
bl_rna: typing.Any
|
|
@@ -1875,6 +1900,29 @@ class SEQUENCER_PT_overlay(bpy.types.Panel):
|
|
|
1875
1900
|
:param _context:
|
|
1876
1901
|
"""
|
|
1877
1902
|
|
|
1903
|
+
class SEQUENCER_PT_playhead_snapping(
|
|
1904
|
+
bl_ui.space_toolsystem_common.PlayheadSnappingPanel, bpy.types.Panel
|
|
1905
|
+
):
|
|
1906
|
+
bl_label: typing.Any
|
|
1907
|
+
bl_region_type: typing.Any
|
|
1908
|
+
bl_rna: typing.Any
|
|
1909
|
+
bl_space_type: typing.Any
|
|
1910
|
+
id_data: typing.Any
|
|
1911
|
+
|
|
1912
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1913
|
+
"""
|
|
1914
|
+
|
|
1915
|
+
:return: The RNA type or default when not found.
|
|
1916
|
+
:rtype: bpy.types.Struct
|
|
1917
|
+
"""
|
|
1918
|
+
|
|
1919
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1920
|
+
"""
|
|
1921
|
+
|
|
1922
|
+
:return: The class or default when not found.
|
|
1923
|
+
:rtype: typing.Any
|
|
1924
|
+
"""
|
|
1925
|
+
|
|
1878
1926
|
class SEQUENCER_PT_preview(SequencerButtonsPanel_Output, bpy.types.Panel):
|
|
1879
1927
|
bl_category: typing.Any
|
|
1880
1928
|
bl_label: typing.Any
|
|
@@ -29,45 +29,59 @@ class SPREADSHEET_HT_header(bpy.types.Header):
|
|
|
29
29
|
:param context:
|
|
30
30
|
"""
|
|
31
31
|
|
|
32
|
-
def
|
|
32
|
+
def selection_filter_available(self, space):
|
|
33
33
|
"""
|
|
34
34
|
|
|
35
|
-
:param
|
|
36
|
-
:param layout:
|
|
37
|
-
:param viewer_path:
|
|
35
|
+
:param space:
|
|
38
36
|
"""
|
|
39
37
|
|
|
40
|
-
|
|
38
|
+
class SPREADSHEET_MT_editor_menus(bpy.types.Menu):
|
|
39
|
+
bl_idname: typing.Any
|
|
40
|
+
bl_label: typing.Any
|
|
41
|
+
bl_rna: typing.Any
|
|
42
|
+
id_data: typing.Any
|
|
43
|
+
|
|
44
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
41
45
|
"""
|
|
42
46
|
|
|
43
|
-
:
|
|
44
|
-
:
|
|
45
|
-
:param viewer_path:
|
|
47
|
+
:return: The RNA type or default when not found.
|
|
48
|
+
:rtype: bpy.types.Struct
|
|
46
49
|
"""
|
|
47
50
|
|
|
48
|
-
def
|
|
51
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
49
52
|
"""
|
|
50
53
|
|
|
51
|
-
:
|
|
52
|
-
:
|
|
54
|
+
:return: The class or default when not found.
|
|
55
|
+
:rtype: typing.Any
|
|
53
56
|
"""
|
|
54
57
|
|
|
55
|
-
def
|
|
58
|
+
def draw(self, context):
|
|
56
59
|
"""
|
|
57
60
|
|
|
58
|
-
:param
|
|
59
|
-
:param space:
|
|
60
|
-
:param icon:
|
|
61
|
+
:param context:
|
|
61
62
|
"""
|
|
62
63
|
|
|
63
|
-
|
|
64
|
+
class SPREADSHEET_MT_view(bpy.types.Menu):
|
|
65
|
+
bl_label: typing.Any
|
|
66
|
+
bl_rna: typing.Any
|
|
67
|
+
id_data: typing.Any
|
|
68
|
+
|
|
69
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
64
70
|
"""
|
|
65
71
|
|
|
66
|
-
:
|
|
72
|
+
:return: The RNA type or default when not found.
|
|
73
|
+
:rtype: bpy.types.Struct
|
|
67
74
|
"""
|
|
68
75
|
|
|
69
|
-
def
|
|
76
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
70
77
|
"""
|
|
71
78
|
|
|
72
|
-
:
|
|
79
|
+
:return: The class or default when not found.
|
|
80
|
+
:rtype: typing.Any
|
|
81
|
+
"""
|
|
82
|
+
|
|
83
|
+
def draw(self, context):
|
|
84
|
+
"""
|
|
85
|
+
|
|
86
|
+
:param context:
|
|
73
87
|
"""
|
|
@@ -4,6 +4,23 @@ import typing_extensions
|
|
|
4
4
|
import numpy.typing as npt
|
|
5
5
|
import bpy.types
|
|
6
6
|
|
|
7
|
+
class PlayheadSnappingPanel:
|
|
8
|
+
bl_label: typing.Any
|
|
9
|
+
bl_region_type: typing.Any
|
|
10
|
+
|
|
11
|
+
def draw(self, context):
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
:param context:
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
@classmethod
|
|
18
|
+
def poll(cls, context):
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
:param context:
|
|
22
|
+
"""
|
|
23
|
+
|
|
7
24
|
class ToolActivePanelHelper:
|
|
8
25
|
bl_label: typing.Any
|
|
9
26
|
|
|
@@ -2530,7 +2530,7 @@ type PropertyFlagItems = typing.Literal[
|
|
|
2530
2530
|
"PROPORTIONAL", # Adjust values proportionally to each other.
|
|
2531
2531
|
"TEXTEDIT_UPDATE", # Update on every keystroke in textedit 'mode'.
|
|
2532
2532
|
"OUTPUT_PATH", # Output Path.
|
|
2533
|
-
"PATH_SUPPORTS_BLEND_RELATIVE", # Relative Path Support.This path supports relative prefix "//" which is expanded the
|
|
2533
|
+
"PATH_SUPPORTS_BLEND_RELATIVE", # Relative Path Support.This path supports relative prefix "//" which is expanded the directory where the current ".blend" file is located..
|
|
2534
2534
|
"SUPPORTS_TEMPLATES", # Variable expression support.This path supports the "{variable_name}" template syntax, which substitutes the value of the referenced variable in place of the template expression.
|
|
2535
2535
|
]
|
|
2536
2536
|
type PropertyOverrideFlagCollectionItems = typing.Literal[
|
bpy/app/timers/__init__.pyi
CHANGED
|
@@ -19,15 +19,6 @@
|
|
|
19
19
|
|
|
20
20
|
```../examples/bpy.app.timers.4.py```
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
--------------------
|
|
24
|
-
|
|
25
|
-
You should never modify Blender data at arbitrary points in time in separate threads.
|
|
26
|
-
However you can use a queue to collect all the actions that should be executed when Blender is in the right state again.
|
|
27
|
-
Pythons queue.Queue can be used here, because it implements the required locking semantics.
|
|
28
|
-
|
|
29
|
-
```../examples/bpy.app.timers.5.py```
|
|
30
|
-
|
|
31
22
|
"""
|
|
32
23
|
|
|
33
24
|
import typing
|
bpy/ops/node/__init__.pyi
CHANGED
|
@@ -387,6 +387,7 @@ def add_node(
|
|
|
387
387
|
settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting]
|
|
388
388
|
| None = None,
|
|
389
389
|
type: str = "",
|
|
390
|
+
visible_output: str = "",
|
|
390
391
|
):
|
|
391
392
|
"""Add a node to the active tree
|
|
392
393
|
|
|
@@ -398,6 +399,8 @@ def add_node(
|
|
|
398
399
|
:type settings: bpy.types.bpy_prop_collection[bl_operators.node.NodeSetting] | None
|
|
399
400
|
:param type: Node Type, Node type
|
|
400
401
|
:type type: str
|
|
402
|
+
:param visible_output: Output Name, If provided, all outputs that are named differently will be hidden
|
|
403
|
+
:type visible_output: str
|
|
401
404
|
"""
|
|
402
405
|
|
|
403
406
|
def add_object(
|
|
@@ -1106,6 +1109,39 @@ def foreach_geometry_element_zone_main_item_remove(
|
|
|
1106
1109
|
:type undo: bool | None
|
|
1107
1110
|
"""
|
|
1108
1111
|
|
|
1112
|
+
def format_string_item_add(
|
|
1113
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1114
|
+
):
|
|
1115
|
+
"""Add item below active item
|
|
1116
|
+
|
|
1117
|
+
:type execution_context: int | str | None
|
|
1118
|
+
:type undo: bool | None
|
|
1119
|
+
"""
|
|
1120
|
+
|
|
1121
|
+
def format_string_item_move(
|
|
1122
|
+
execution_context: int | str | None = None,
|
|
1123
|
+
undo: bool | None = None,
|
|
1124
|
+
/,
|
|
1125
|
+
*,
|
|
1126
|
+
direction: typing.Literal["UP", "DOWN"] | None = "UP",
|
|
1127
|
+
):
|
|
1128
|
+
"""Move active item
|
|
1129
|
+
|
|
1130
|
+
:type execution_context: int | str | None
|
|
1131
|
+
:type undo: bool | None
|
|
1132
|
+
:param direction: Direction, Move direction
|
|
1133
|
+
:type direction: typing.Literal['UP','DOWN'] | None
|
|
1134
|
+
"""
|
|
1135
|
+
|
|
1136
|
+
def format_string_item_remove(
|
|
1137
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
1138
|
+
):
|
|
1139
|
+
"""Remove active item
|
|
1140
|
+
|
|
1141
|
+
:type execution_context: int | str | None
|
|
1142
|
+
:type undo: bool | None
|
|
1143
|
+
"""
|
|
1144
|
+
|
|
1109
1145
|
def gltf_settings_node_operator(
|
|
1110
1146
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
1111
1147
|
):
|
bpy/ops/screen/__init__.pyi
CHANGED
|
@@ -215,7 +215,7 @@ def frame_offset(
|
|
|
215
215
|
def header_toggle_menus(
|
|
216
216
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
217
217
|
):
|
|
218
|
-
"""Expand or collapse the header
|
|
218
|
+
"""Expand or collapse the header pull-down menus
|
|
219
219
|
|
|
220
220
|
:type execution_context: int | str | None
|
|
221
221
|
:type undo: bool | None
|