fake-bpy-module 20240721__py3-none-any.whl → 20240722__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.

Files changed (71) hide show
  1. bl_operators/add_mesh_torus/__init__.pyi +1 -2
  2. bl_operators/assets/__init__.pyi +2 -2
  3. bl_operators/bone_selection_sets/__init__.pyi +16 -28
  4. bl_operators/connect_to_output/__init__.pyi +1 -4
  5. bl_operators/image_as_planes/__init__.pyi +2 -12
  6. bl_operators/node/__init__.pyi +14 -16
  7. bl_operators/object_quick_effects/__init__.pyi +3 -3
  8. bl_operators/presets/__init__.pyi +22 -25
  9. bl_operators/sequencer/__init__.pyi +76 -76
  10. bl_ui/generic_ui_list/__init__.pyi +3 -3
  11. bl_ui/properties_collection/__init__.pyi +5 -19
  12. bl_ui/properties_constraint/__init__.pyi +79 -289
  13. bl_ui/properties_data_armature/__init__.pyi +9 -33
  14. bl_ui/properties_data_bone/__init__.pyi +10 -17
  15. bl_ui/properties_data_camera/__init__.pyi +14 -32
  16. bl_ui/properties_data_curve/__init__.pyi +69 -88
  17. bl_ui/properties_data_curves/__init__.pyi +4 -9
  18. bl_ui/properties_data_empty/__init__.pyi +2 -2
  19. bl_ui/properties_data_gpencil/__init__.pyi +15 -50
  20. bl_ui/properties_data_grease_pencil/__init__.pyi +10 -36
  21. bl_ui/properties_data_lattice/__init__.pyi +3 -6
  22. bl_ui/properties_data_light/__init__.pyi +12 -25
  23. bl_ui/properties_data_lightprobe/__init__.pyi +13 -35
  24. bl_ui/properties_data_mesh/__init__.pyi +63 -72
  25. bl_ui/properties_data_metaball/__init__.pyi +5 -10
  26. bl_ui/properties_data_modifier/__init__.pyi +9 -23
  27. bl_ui/properties_data_pointcloud/__init__.pyi +3 -10
  28. bl_ui/properties_data_shaderfx/__init__.pyi +1 -1
  29. bl_ui/properties_data_speaker/__init__.pyi +5 -8
  30. bl_ui/properties_data_volume/__init__.pyi +7 -14
  31. bl_ui/properties_freestyle/__init__.pyi +9 -42
  32. bl_ui/properties_material/__init__.pyi +14 -40
  33. bl_ui/properties_material_gpencil/__init__.pyi +8 -32
  34. bl_ui/properties_object/__init__.pyi +13 -31
  35. bl_ui/properties_output/__init__.pyi +16 -43
  36. bl_ui/properties_paint_common/__init__.pyi +17 -17
  37. bl_ui/properties_particle/__init__.pyi +50 -135
  38. bl_ui/properties_physics_cloth/__init__.pyi +14 -35
  39. bl_ui/properties_physics_common/__init__.pyi +1 -1
  40. bl_ui/properties_physics_dynamicpaint/__init__.pyi +21 -57
  41. bl_ui/properties_physics_field/__init__.pyi +10 -26
  42. bl_ui/properties_physics_fluid/__init__.pyi +28 -51
  43. bl_ui/properties_physics_rigidbody/__init__.pyi +8 -18
  44. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +13 -25
  45. bl_ui/properties_physics_softbody/__init__.pyi +15 -43
  46. bl_ui/properties_render/__init__.pyi +54 -150
  47. bl_ui/properties_scene/__init__.pyi +29 -42
  48. bl_ui/properties_texture/__init__.pyi +26 -58
  49. bl_ui/properties_view_layer/__init__.pyi +16 -43
  50. bl_ui/properties_workspace/__init__.pyi +3 -9
  51. bl_ui/properties_world/__init__.pyi +10 -19
  52. bl_ui/space_clip/__init__.pyi +31 -93
  53. bl_ui/space_dopesheet/__init__.pyi +13 -66
  54. bl_ui/space_filebrowser/__init__.pyi +17 -38
  55. bl_ui/space_graph/__init__.pyi +1 -6
  56. bl_ui/space_image/__init__.pyi +190 -235
  57. bl_ui/space_nla/__init__.pyi +2 -11
  58. bl_ui/space_node/__init__.pyi +3 -16
  59. bl_ui/space_sequencer/__init__.pyi +34 -104
  60. bl_ui/space_time/__init__.pyi +3 -7
  61. bl_ui/space_toolsystem_toolbar/__init__.pyi +4 -21
  62. bl_ui/space_userpref/__init__.pyi +76 -215
  63. bl_ui/space_view3d/__init__.pyi +91 -147
  64. bl_ui/space_view3d_toolbar/__init__.pyi +435 -543
  65. bpy_extras/node_shader_utils/__init__.pyi +118 -118
  66. {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/METADATA +1 -1
  67. {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/RECORD +71 -71
  68. {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/WHEEL +1 -1
  69. keyingsets_builtins/__init__.pyi +2 -2
  70. nodeitems_builtins/__init__.pyi +3 -3
  71. {fake_bpy_module-20240721.dist-info → fake_bpy_module-20240722.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,6 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bl_ui.utils
5
4
  import bpy.types
6
5
  import bpy_types
7
6
 
@@ -430,7 +429,7 @@ class USERPREF_MT_view(bpy.types.Menu, bpy_types._GenericUI):
430
429
  """
431
430
  ...
432
431
 
433
- class USERPREF_PT_addons(bpy.types.Panel, AddOnPanel, bpy_types._GenericUI):
432
+ class USERPREF_PT_addons(bpy.types.Panel, bpy_types._GenericUI):
434
433
  bl_context: typing.Any
435
434
  bl_label: typing.Any
436
435
  bl_options: typing.Any
@@ -514,9 +513,7 @@ class USERPREF_PT_addons_filter(bpy.types.Panel, bpy_types._GenericUI):
514
513
  """
515
514
  ...
516
515
 
517
- class USERPREF_PT_animation_fcurves(
518
- bpy.types.Panel, AnimationPanel, CenterAlignMixIn, bpy_types._GenericUI
519
- ):
516
+ class USERPREF_PT_animation_fcurves(bpy.types.Panel, bpy_types._GenericUI):
520
517
  """Base class for panels to center align contents with some horizontal margin.
521
518
  Deriving classes need to implement a draw_centered(context, layout) function.
522
519
  """
@@ -552,9 +549,7 @@ class USERPREF_PT_animation_fcurves(
552
549
  """
553
550
  ...
554
551
 
555
- class USERPREF_PT_animation_keyframes(
556
- bpy.types.Panel, AnimationPanel, CenterAlignMixIn, bpy_types._GenericUI
557
- ):
552
+ class USERPREF_PT_animation_keyframes(bpy.types.Panel, bpy_types._GenericUI):
558
553
  """Base class for panels to center align contents with some horizontal margin.
559
554
  Deriving classes need to implement a draw_centered(context, layout) function.
560
555
  """
@@ -590,9 +585,7 @@ class USERPREF_PT_animation_keyframes(
590
585
  """
591
586
  ...
592
587
 
593
- class USERPREF_PT_animation_timeline(
594
- bpy.types.Panel, AnimationPanel, CenterAlignMixIn, bpy_types._GenericUI
595
- ):
588
+ class USERPREF_PT_animation_timeline(bpy.types.Panel, bpy_types._GenericUI):
596
589
  """Base class for panels to center align contents with some horizontal margin.
597
590
  Deriving classes need to implement a draw_centered(context, layout) function.
598
591
  """
@@ -628,9 +621,7 @@ class USERPREF_PT_animation_timeline(
628
621
  """
629
622
  ...
630
623
 
631
- class USERPREF_PT_edit_annotations(
632
- bpy.types.Panel, EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
633
- ):
624
+ class USERPREF_PT_edit_annotations(bpy.types.Panel, bpy_types._GenericUI):
634
625
  """Base class for panels to center align contents with some horizontal margin.
635
626
  Deriving classes need to implement a draw_centered(context, layout) function.
636
627
  """
@@ -666,9 +657,7 @@ class USERPREF_PT_edit_annotations(
666
657
  """
667
658
  ...
668
659
 
669
- class USERPREF_PT_edit_cursor(
670
- bpy.types.Panel, EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
671
- ):
660
+ class USERPREF_PT_edit_cursor(bpy.types.Panel, bpy_types._GenericUI):
672
661
  """Base class for panels to center align contents with some horizontal margin.
673
662
  Deriving classes need to implement a draw_centered(context, layout) function.
674
663
  """
@@ -704,9 +693,7 @@ class USERPREF_PT_edit_cursor(
704
693
  """
705
694
  ...
706
695
 
707
- class USERPREF_PT_edit_gpencil(
708
- bpy.types.Panel, EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
709
- ):
696
+ class USERPREF_PT_edit_gpencil(bpy.types.Panel, bpy_types._GenericUI):
710
697
  """Base class for panels to center align contents with some horizontal margin.
711
698
  Deriving classes need to implement a draw_centered(context, layout) function.
712
699
  """
@@ -743,9 +730,7 @@ class USERPREF_PT_edit_gpencil(
743
730
  """
744
731
  ...
745
732
 
746
- class USERPREF_PT_edit_misc(
747
- bpy.types.Panel, EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
748
- ):
733
+ class USERPREF_PT_edit_misc(bpy.types.Panel, bpy_types._GenericUI):
749
734
  """Base class for panels to center align contents with some horizontal margin.
750
735
  Deriving classes need to implement a draw_centered(context, layout) function.
751
736
  """
@@ -782,9 +767,7 @@ class USERPREF_PT_edit_misc(
782
767
  """
783
768
  ...
784
769
 
785
- class USERPREF_PT_edit_node_editor(
786
- bpy.types.Panel, EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
787
- ):
770
+ class USERPREF_PT_edit_node_editor(bpy.types.Panel, bpy_types._GenericUI):
788
771
  """Base class for panels to center align contents with some horizontal margin.
789
772
  Deriving classes need to implement a draw_centered(context, layout) function.
790
773
  """
@@ -821,7 +804,7 @@ class USERPREF_PT_edit_node_editor(
821
804
  """
822
805
  ...
823
806
 
824
- class USERPREF_PT_edit_objects(bpy.types.Panel, EditingPanel, bpy_types._GenericUI):
807
+ class USERPREF_PT_edit_objects(bpy.types.Panel, bpy_types._GenericUI):
825
808
  bl_context: typing.Any
826
809
  bl_label: typing.Any
827
810
  bl_region_type: typing.Any
@@ -852,9 +835,7 @@ class USERPREF_PT_edit_objects(bpy.types.Panel, EditingPanel, bpy_types._Generic
852
835
  """
853
836
  ...
854
837
 
855
- class USERPREF_PT_edit_objects_duplicate_data(
856
- bpy.types.Panel, EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
857
- ):
838
+ class USERPREF_PT_edit_objects_duplicate_data(bpy.types.Panel, bpy_types._GenericUI):
858
839
  """Base class for panels to center align contents with some horizontal margin.
859
840
  Deriving classes need to implement a draw_centered(context, layout) function.
860
841
  """
@@ -892,9 +873,7 @@ class USERPREF_PT_edit_objects_duplicate_data(
892
873
  """
893
874
  ...
894
875
 
895
- class USERPREF_PT_edit_objects_new(
896
- bpy.types.Panel, EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
897
- ):
876
+ class USERPREF_PT_edit_objects_new(bpy.types.Panel, bpy_types._GenericUI):
898
877
  """Base class for panels to center align contents with some horizontal margin.
899
878
  Deriving classes need to implement a draw_centered(context, layout) function.
900
879
  """
@@ -931,9 +910,7 @@ class USERPREF_PT_edit_objects_new(
931
910
  """
932
911
  ...
933
912
 
934
- class USERPREF_PT_edit_sequence_editor(
935
- bpy.types.Panel, EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
936
- ):
913
+ class USERPREF_PT_edit_sequence_editor(bpy.types.Panel, bpy_types._GenericUI):
937
914
  """Base class for panels to center align contents with some horizontal margin.
938
915
  Deriving classes need to implement a draw_centered(context, layout) function.
939
916
  """
@@ -970,9 +947,7 @@ class USERPREF_PT_edit_sequence_editor(
970
947
  """
971
948
  ...
972
949
 
973
- class USERPREF_PT_edit_text_editor(
974
- bpy.types.Panel, EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
975
- ):
950
+ class USERPREF_PT_edit_text_editor(bpy.types.Panel, bpy_types._GenericUI):
976
951
  """Base class for panels to center align contents with some horizontal margin.
977
952
  Deriving classes need to implement a draw_centered(context, layout) function.
978
953
  """
@@ -1009,9 +984,7 @@ class USERPREF_PT_edit_text_editor(
1009
984
  """
1010
985
  ...
1011
986
 
1012
- class USERPREF_PT_edit_weight_paint(
1013
- bpy.types.Panel, EditingPanel, CenterAlignMixIn, bpy_types._GenericUI
1014
- ):
987
+ class USERPREF_PT_edit_weight_paint(bpy.types.Panel, bpy_types._GenericUI):
1015
988
  """Base class for panels to center align contents with some horizontal margin.
1016
989
  Deriving classes need to implement a draw_centered(context, layout) function.
1017
990
  """
@@ -1048,9 +1021,7 @@ class USERPREF_PT_edit_weight_paint(
1048
1021
  """
1049
1022
  ...
1050
1023
 
1051
- class USERPREF_PT_experimental_debugging(
1052
- bpy.types.Panel, ExperimentalPanel, bpy_types._GenericUI
1053
- ):
1024
+ class USERPREF_PT_experimental_debugging(bpy.types.Panel, bpy_types._GenericUI):
1054
1025
  bl_context: typing.Any
1055
1026
  bl_label: typing.Any
1056
1027
  bl_region_type: typing.Any
@@ -1090,9 +1061,7 @@ class USERPREF_PT_experimental_debugging(
1090
1061
  """
1091
1062
  ...
1092
1063
 
1093
- class USERPREF_PT_experimental_new_features(
1094
- bpy.types.Panel, ExperimentalPanel, bpy_types._GenericUI
1095
- ):
1064
+ class USERPREF_PT_experimental_new_features(bpy.types.Panel, bpy_types._GenericUI):
1096
1065
  bl_context: typing.Any
1097
1066
  bl_label: typing.Any
1098
1067
  bl_region_type: typing.Any
@@ -1124,9 +1093,7 @@ class USERPREF_PT_experimental_new_features(
1124
1093
  """
1125
1094
  ...
1126
1095
 
1127
- class USERPREF_PT_experimental_prototypes(
1128
- bpy.types.Panel, ExperimentalPanel, bpy_types._GenericUI
1129
- ):
1096
+ class USERPREF_PT_experimental_prototypes(bpy.types.Panel, bpy_types._GenericUI):
1130
1097
  bl_context: typing.Any
1131
1098
  bl_label: typing.Any
1132
1099
  bl_region_type: typing.Any
@@ -1158,7 +1125,7 @@ class USERPREF_PT_experimental_prototypes(
1158
1125
  """
1159
1126
  ...
1160
1127
 
1161
- class USERPREF_PT_extensions(bpy.types.Panel, ExtensionsPanel, bpy_types._GenericUI):
1128
+ class USERPREF_PT_extensions(bpy.types.Panel, bpy_types._GenericUI):
1162
1129
  bl_context: typing.Any
1163
1130
  bl_label: typing.Any
1164
1131
  bl_options: typing.Any
@@ -1215,9 +1182,7 @@ class USERPREF_PT_extensions_repos(bpy.types.Panel, bpy_types._GenericUI):
1215
1182
  """
1216
1183
  ...
1217
1184
 
1218
- class USERPREF_PT_file_paths_applications(
1219
- bpy.types.Panel, FilePathsPanel, bpy_types._GenericUI
1220
- ):
1185
+ class USERPREF_PT_file_paths_applications(bpy.types.Panel, bpy_types._GenericUI):
1221
1186
  bl_context: typing.Any
1222
1187
  bl_label: typing.Any
1223
1188
  bl_options: typing.Any
@@ -1249,9 +1214,7 @@ class USERPREF_PT_file_paths_applications(
1249
1214
  """
1250
1215
  ...
1251
1216
 
1252
- class USERPREF_PT_file_paths_asset_libraries(
1253
- bpy.types.Panel, FilePathsPanel, bpy_types._GenericUI
1254
- ):
1217
+ class USERPREF_PT_file_paths_asset_libraries(bpy.types.Panel, bpy_types._GenericUI):
1255
1218
  bl_context: typing.Any
1256
1219
  bl_label: typing.Any
1257
1220
  bl_region_type: typing.Any
@@ -1282,9 +1245,7 @@ class USERPREF_PT_file_paths_asset_libraries(
1282
1245
  """
1283
1246
  ...
1284
1247
 
1285
- class USERPREF_PT_file_paths_data(
1286
- bpy.types.Panel, FilePathsPanel, bpy_types._GenericUI
1287
- ):
1248
+ class USERPREF_PT_file_paths_data(bpy.types.Panel, bpy_types._GenericUI):
1288
1249
  bl_context: typing.Any
1289
1250
  bl_label: typing.Any
1290
1251
  bl_region_type: typing.Any
@@ -1315,9 +1276,7 @@ class USERPREF_PT_file_paths_data(
1315
1276
  """
1316
1277
  ...
1317
1278
 
1318
- class USERPREF_PT_file_paths_development(
1319
- bpy.types.Panel, FilePathsPanel, bpy_types._GenericUI
1320
- ):
1279
+ class USERPREF_PT_file_paths_development(bpy.types.Panel, bpy_types._GenericUI):
1321
1280
  bl_context: typing.Any
1322
1281
  bl_label: typing.Any
1323
1282
  bl_options: typing.Any
@@ -1357,9 +1316,7 @@ class USERPREF_PT_file_paths_development(
1357
1316
  """
1358
1317
  ...
1359
1318
 
1360
- class USERPREF_PT_file_paths_render(
1361
- bpy.types.Panel, FilePathsPanel, bpy_types._GenericUI
1362
- ):
1319
+ class USERPREF_PT_file_paths_render(bpy.types.Panel, bpy_types._GenericUI):
1363
1320
  bl_context: typing.Any
1364
1321
  bl_label: typing.Any
1365
1322
  bl_parent_id: typing.Any
@@ -1391,9 +1348,7 @@ class USERPREF_PT_file_paths_render(
1391
1348
  """
1392
1349
  ...
1393
1350
 
1394
- class USERPREF_PT_file_paths_script_directories(
1395
- bpy.types.Panel, FilePathsPanel, bpy_types._GenericUI
1396
- ):
1351
+ class USERPREF_PT_file_paths_script_directories(bpy.types.Panel, bpy_types._GenericUI):
1397
1352
  bl_context: typing.Any
1398
1353
  bl_label: typing.Any
1399
1354
  bl_region_type: typing.Any
@@ -1424,9 +1379,7 @@ class USERPREF_PT_file_paths_script_directories(
1424
1379
  """
1425
1380
  ...
1426
1381
 
1427
- class USERPREF_PT_input_keyboard(
1428
- bpy.types.Panel, InputPanel, CenterAlignMixIn, bpy_types._GenericUI
1429
- ):
1382
+ class USERPREF_PT_input_keyboard(bpy.types.Panel, bpy_types._GenericUI):
1430
1383
  """Base class for panels to center align contents with some horizontal margin.
1431
1384
  Deriving classes need to implement a draw_centered(context, layout) function.
1432
1385
  """
@@ -1462,9 +1415,7 @@ class USERPREF_PT_input_keyboard(
1462
1415
  """
1463
1416
  ...
1464
1417
 
1465
- class USERPREF_PT_input_mouse(
1466
- bpy.types.Panel, InputPanel, CenterAlignMixIn, bpy_types._GenericUI
1467
- ):
1418
+ class USERPREF_PT_input_mouse(bpy.types.Panel, bpy_types._GenericUI):
1468
1419
  """Base class for panels to center align contents with some horizontal margin.
1469
1420
  Deriving classes need to implement a draw_centered(context, layout) function.
1470
1421
  """
@@ -1500,9 +1451,7 @@ class USERPREF_PT_input_mouse(
1500
1451
  """
1501
1452
  ...
1502
1453
 
1503
- class USERPREF_PT_input_ndof(
1504
- bpy.types.Panel, InputPanel, CenterAlignMixIn, bpy_types._GenericUI
1505
- ):
1454
+ class USERPREF_PT_input_ndof(bpy.types.Panel, bpy_types._GenericUI):
1506
1455
  """Base class for panels to center align contents with some horizontal margin.
1507
1456
  Deriving classes need to implement a draw_centered(context, layout) function.
1508
1457
  """
@@ -1547,9 +1496,7 @@ class USERPREF_PT_input_ndof(
1547
1496
  """
1548
1497
  ...
1549
1498
 
1550
- class USERPREF_PT_input_tablet(
1551
- bpy.types.Panel, InputPanel, CenterAlignMixIn, bpy_types._GenericUI
1552
- ):
1499
+ class USERPREF_PT_input_tablet(bpy.types.Panel, bpy_types._GenericUI):
1553
1500
  """Base class for panels to center align contents with some horizontal margin.
1554
1501
  Deriving classes need to implement a draw_centered(context, layout) function.
1555
1502
  """
@@ -1585,9 +1532,7 @@ class USERPREF_PT_input_tablet(
1585
1532
  """
1586
1533
  ...
1587
1534
 
1588
- class USERPREF_PT_input_touchpad(
1589
- bpy.types.Panel, InputPanel, CenterAlignMixIn, bpy_types._GenericUI
1590
- ):
1535
+ class USERPREF_PT_input_touchpad(bpy.types.Panel, bpy_types._GenericUI):
1591
1536
  """Base class for panels to center align contents with some horizontal margin.
1592
1537
  Deriving classes need to implement a draw_centered(context, layout) function.
1593
1538
  """
@@ -1632,9 +1577,7 @@ class USERPREF_PT_input_touchpad(
1632
1577
  """
1633
1578
  ...
1634
1579
 
1635
- class USERPREF_PT_interface_display(
1636
- bpy.types.Panel, InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
1637
- ):
1580
+ class USERPREF_PT_interface_display(bpy.types.Panel, bpy_types._GenericUI):
1638
1581
  """Base class for panels to center align contents with some horizontal margin.
1639
1582
  Deriving classes need to implement a draw_centered(context, layout) function.
1640
1583
  """
@@ -1670,9 +1613,7 @@ class USERPREF_PT_interface_display(
1670
1613
  """
1671
1614
  ...
1672
1615
 
1673
- class USERPREF_PT_interface_editors(
1674
- bpy.types.Panel, InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
1675
- ):
1616
+ class USERPREF_PT_interface_editors(bpy.types.Panel, bpy_types._GenericUI):
1676
1617
  """Base class for panels to center align contents with some horizontal margin.
1677
1618
  Deriving classes need to implement a draw_centered(context, layout) function.
1678
1619
  """
@@ -1708,9 +1649,7 @@ class USERPREF_PT_interface_editors(
1708
1649
  """
1709
1650
  ...
1710
1651
 
1711
- class USERPREF_PT_interface_menus(
1712
- bpy.types.Panel, InterfacePanel, bpy_types._GenericUI
1713
- ):
1652
+ class USERPREF_PT_interface_menus(bpy.types.Panel, bpy_types._GenericUI):
1714
1653
  bl_context: typing.Any
1715
1654
  bl_label: typing.Any
1716
1655
  bl_options: typing.Any
@@ -1742,9 +1681,7 @@ class USERPREF_PT_interface_menus(
1742
1681
  """
1743
1682
  ...
1744
1683
 
1745
- class USERPREF_PT_interface_menus_mouse_over(
1746
- bpy.types.Panel, InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
1747
- ):
1684
+ class USERPREF_PT_interface_menus_mouse_over(bpy.types.Panel, bpy_types._GenericUI):
1748
1685
  """Base class for panels to center align contents with some horizontal margin.
1749
1686
  Deriving classes need to implement a draw_centered(context, layout) function.
1750
1687
  """
@@ -1788,9 +1725,7 @@ class USERPREF_PT_interface_menus_mouse_over(
1788
1725
  """
1789
1726
  ...
1790
1727
 
1791
- class USERPREF_PT_interface_menus_pie(
1792
- bpy.types.Panel, InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
1793
- ):
1728
+ class USERPREF_PT_interface_menus_pie(bpy.types.Panel, bpy_types._GenericUI):
1794
1729
  """Base class for panels to center align contents with some horizontal margin.
1795
1730
  Deriving classes need to implement a draw_centered(context, layout) function.
1796
1731
  """
@@ -1827,9 +1762,7 @@ class USERPREF_PT_interface_menus_pie(
1827
1762
  """
1828
1763
  ...
1829
1764
 
1830
- class USERPREF_PT_interface_statusbar(
1831
- bpy.types.Panel, InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
1832
- ):
1765
+ class USERPREF_PT_interface_statusbar(bpy.types.Panel, bpy_types._GenericUI):
1833
1766
  """Base class for panels to center align contents with some horizontal margin.
1834
1767
  Deriving classes need to implement a draw_centered(context, layout) function.
1835
1768
  """
@@ -1867,9 +1800,7 @@ class USERPREF_PT_interface_statusbar(
1867
1800
  """
1868
1801
  ...
1869
1802
 
1870
- class USERPREF_PT_interface_temporary_windows(
1871
- bpy.types.Panel, InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
1872
- ):
1803
+ class USERPREF_PT_interface_temporary_windows(bpy.types.Panel, bpy_types._GenericUI):
1873
1804
  """Base class for panels to center align contents with some horizontal margin.
1874
1805
  Deriving classes need to implement a draw_centered(context, layout) function.
1875
1806
  """
@@ -1907,9 +1838,7 @@ class USERPREF_PT_interface_temporary_windows(
1907
1838
  """
1908
1839
  ...
1909
1840
 
1910
- class USERPREF_PT_interface_text(
1911
- bpy.types.Panel, InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
1912
- ):
1841
+ class USERPREF_PT_interface_text(bpy.types.Panel, bpy_types._GenericUI):
1913
1842
  """Base class for panels to center align contents with some horizontal margin.
1914
1843
  Deriving classes need to implement a draw_centered(context, layout) function.
1915
1844
  """
@@ -1946,9 +1875,7 @@ class USERPREF_PT_interface_text(
1946
1875
  """
1947
1876
  ...
1948
1877
 
1949
- class USERPREF_PT_interface_translation(
1950
- bpy.types.Panel, InterfacePanel, CenterAlignMixIn, bpy_types._GenericUI
1951
- ):
1878
+ class USERPREF_PT_interface_translation(bpy.types.Panel, bpy_types._GenericUI):
1952
1879
  """Base class for panels to center align contents with some horizontal margin.
1953
1880
  Deriving classes need to implement a draw_centered(context, layout) function.
1954
1881
  """
@@ -1993,7 +1920,7 @@ class USERPREF_PT_interface_translation(
1993
1920
  """
1994
1921
  ...
1995
1922
 
1996
- class USERPREF_PT_keymap(bpy.types.Panel, KeymapPanel, bpy_types._GenericUI):
1923
+ class USERPREF_PT_keymap(bpy.types.Panel, bpy_types._GenericUI):
1997
1924
  bl_context: typing.Any
1998
1925
  bl_label: typing.Any
1999
1926
  bl_options: typing.Any
@@ -2056,9 +1983,7 @@ class USERPREF_PT_navigation_bar(bpy.types.Panel, bpy_types._GenericUI):
2056
1983
  """
2057
1984
  ...
2058
1985
 
2059
- class USERPREF_PT_navigation_fly_walk(
2060
- bpy.types.Panel, NavigationPanel, CenterAlignMixIn, bpy_types._GenericUI
2061
- ):
1986
+ class USERPREF_PT_navigation_fly_walk(bpy.types.Panel, bpy_types._GenericUI):
2062
1987
  """Base class for panels to center align contents with some horizontal margin.
2063
1988
  Deriving classes need to implement a draw_centered(context, layout) function.
2064
1989
  """
@@ -2094,9 +2019,7 @@ class USERPREF_PT_navigation_fly_walk(
2094
2019
  """
2095
2020
  ...
2096
2021
 
2097
- class USERPREF_PT_navigation_fly_walk_gravity(
2098
- bpy.types.Panel, NavigationPanel, CenterAlignMixIn, bpy_types._GenericUI
2099
- ):
2022
+ class USERPREF_PT_navigation_fly_walk_gravity(bpy.types.Panel, bpy_types._GenericUI):
2100
2023
  """Base class for panels to center align contents with some horizontal margin.
2101
2024
  Deriving classes need to implement a draw_centered(context, layout) function.
2102
2025
  """
@@ -2149,9 +2072,7 @@ class USERPREF_PT_navigation_fly_walk_gravity(
2149
2072
  """
2150
2073
  ...
2151
2074
 
2152
- class USERPREF_PT_navigation_fly_walk_navigation(
2153
- bpy.types.Panel, NavigationPanel, CenterAlignMixIn, bpy_types._GenericUI
2154
- ):
2075
+ class USERPREF_PT_navigation_fly_walk_navigation(bpy.types.Panel, bpy_types._GenericUI):
2155
2076
  """Base class for panels to center align contents with some horizontal margin.
2156
2077
  Deriving classes need to implement a draw_centered(context, layout) function.
2157
2078
  """
@@ -2197,9 +2118,7 @@ class USERPREF_PT_navigation_fly_walk_navigation(
2197
2118
  """
2198
2119
  ...
2199
2120
 
2200
- class USERPREF_PT_navigation_orbit(
2201
- bpy.types.Panel, NavigationPanel, CenterAlignMixIn, bpy_types._GenericUI
2202
- ):
2121
+ class USERPREF_PT_navigation_orbit(bpy.types.Panel, bpy_types._GenericUI):
2203
2122
  """Base class for panels to center align contents with some horizontal margin.
2204
2123
  Deriving classes need to implement a draw_centered(context, layout) function.
2205
2124
  """
@@ -2235,9 +2154,7 @@ class USERPREF_PT_navigation_orbit(
2235
2154
  """
2236
2155
  ...
2237
2156
 
2238
- class USERPREF_PT_navigation_zoom(
2239
- bpy.types.Panel, NavigationPanel, CenterAlignMixIn, bpy_types._GenericUI
2240
- ):
2157
+ class USERPREF_PT_navigation_zoom(bpy.types.Panel, bpy_types._GenericUI):
2241
2158
  """Base class for panels to center align contents with some horizontal margin.
2242
2159
  Deriving classes need to implement a draw_centered(context, layout) function.
2243
2160
  """
@@ -2353,9 +2270,7 @@ class USERPREF_PT_save_preferences(bpy.types.Panel, bpy_types._GenericUI):
2353
2270
  """
2354
2271
  ...
2355
2272
 
2356
- class USERPREF_PT_saveload_autorun(
2357
- bpy.types.Panel, FilePathsPanel, bpy_types._GenericUI
2358
- ):
2273
+ class USERPREF_PT_saveload_autorun(bpy.types.Panel, bpy_types._GenericUI):
2359
2274
  bl_context: typing.Any
2360
2275
  bl_label: typing.Any
2361
2276
  bl_parent_id: typing.Any
@@ -2394,9 +2309,7 @@ class USERPREF_PT_saveload_autorun(
2394
2309
  """
2395
2310
  ...
2396
2311
 
2397
- class USERPREF_PT_saveload_blend(
2398
- bpy.types.Panel, SaveLoadPanel, CenterAlignMixIn, bpy_types._GenericUI
2399
- ):
2312
+ class USERPREF_PT_saveload_blend(bpy.types.Panel, bpy_types._GenericUI):
2400
2313
  """Base class for panels to center align contents with some horizontal margin.
2401
2314
  Deriving classes need to implement a draw_centered(context, layout) function.
2402
2315
  """
@@ -2432,9 +2345,7 @@ class USERPREF_PT_saveload_blend(
2432
2345
  """
2433
2346
  ...
2434
2347
 
2435
- class USERPREF_PT_saveload_file_browser(
2436
- bpy.types.Panel, SaveLoadPanel, CenterAlignMixIn, bpy_types._GenericUI
2437
- ):
2348
+ class USERPREF_PT_saveload_file_browser(bpy.types.Panel, bpy_types._GenericUI):
2438
2349
  """Base class for panels to center align contents with some horizontal margin.
2439
2350
  Deriving classes need to implement a draw_centered(context, layout) function.
2440
2351
  """
@@ -2470,9 +2381,7 @@ class USERPREF_PT_saveload_file_browser(
2470
2381
  """
2471
2382
  ...
2472
2383
 
2473
- class USERPREF_PT_studiolight_light_editor(
2474
- bpy.types.Panel, StudioLightPanel, bpy_types._GenericUI
2475
- ):
2384
+ class USERPREF_PT_studiolight_light_editor(bpy.types.Panel, bpy_types._GenericUI):
2476
2385
  bl_context: typing.Any
2477
2386
  bl_label: typing.Any
2478
2387
  bl_options: typing.Any
@@ -2514,9 +2423,7 @@ class USERPREF_PT_studiolight_light_editor(
2514
2423
  """
2515
2424
  ...
2516
2425
 
2517
- class USERPREF_PT_studiolight_lights(
2518
- bpy.types.Panel, StudioLightPanel, StudioLightPanelMixin, bpy_types._GenericUI
2519
- ):
2426
+ class USERPREF_PT_studiolight_lights(bpy.types.Panel, bpy_types._GenericUI):
2520
2427
  bl_context: typing.Any
2521
2428
  bl_label: typing.Any
2522
2429
  bl_region_type: typing.Any
@@ -2550,9 +2457,7 @@ class USERPREF_PT_studiolight_lights(
2550
2457
 
2551
2458
  def get_error_message(self): ...
2552
2459
 
2553
- class USERPREF_PT_studiolight_matcaps(
2554
- bpy.types.Panel, StudioLightPanel, StudioLightPanelMixin, bpy_types._GenericUI
2555
- ):
2460
+ class USERPREF_PT_studiolight_matcaps(bpy.types.Panel, bpy_types._GenericUI):
2556
2461
  bl_context: typing.Any
2557
2462
  bl_label: typing.Any
2558
2463
  bl_region_type: typing.Any
@@ -2586,9 +2491,7 @@ class USERPREF_PT_studiolight_matcaps(
2586
2491
 
2587
2492
  def get_error_message(self): ...
2588
2493
 
2589
- class USERPREF_PT_studiolight_world(
2590
- bpy.types.Panel, StudioLightPanel, StudioLightPanelMixin, bpy_types._GenericUI
2591
- ):
2494
+ class USERPREF_PT_studiolight_world(bpy.types.Panel, bpy_types._GenericUI):
2592
2495
  bl_context: typing.Any
2593
2496
  bl_label: typing.Any
2594
2497
  bl_region_type: typing.Any
@@ -2622,9 +2525,7 @@ class USERPREF_PT_studiolight_world(
2622
2525
 
2623
2526
  def get_error_message(self): ...
2624
2527
 
2625
- class USERPREF_PT_system_cycles_devices(
2626
- bpy.types.Panel, SystemPanel, CenterAlignMixIn, bpy_types._GenericUI
2627
- ):
2528
+ class USERPREF_PT_system_cycles_devices(bpy.types.Panel, bpy_types._GenericUI):
2628
2529
  """Base class for panels to center align contents with some horizontal margin.
2629
2530
  Deriving classes need to implement a draw_centered(context, layout) function.
2630
2531
  """
@@ -2660,9 +2561,7 @@ class USERPREF_PT_system_cycles_devices(
2660
2561
  """
2661
2562
  ...
2662
2563
 
2663
- class USERPREF_PT_system_memory(
2664
- bpy.types.Panel, SystemPanel, CenterAlignMixIn, bpy_types._GenericUI
2665
- ):
2564
+ class USERPREF_PT_system_memory(bpy.types.Panel, bpy_types._GenericUI):
2666
2565
  """Base class for panels to center align contents with some horizontal margin.
2667
2566
  Deriving classes need to implement a draw_centered(context, layout) function.
2668
2567
  """
@@ -2698,9 +2597,7 @@ class USERPREF_PT_system_memory(
2698
2597
  """
2699
2598
  ...
2700
2599
 
2701
- class USERPREF_PT_system_network(
2702
- bpy.types.Panel, SystemPanel, CenterAlignMixIn, bpy_types._GenericUI
2703
- ):
2600
+ class USERPREF_PT_system_network(bpy.types.Panel, bpy_types._GenericUI):
2704
2601
  """Base class for panels to center align contents with some horizontal margin.
2705
2602
  Deriving classes need to implement a draw_centered(context, layout) function.
2706
2603
  """
@@ -2736,9 +2633,7 @@ class USERPREF_PT_system_network(
2736
2633
  """
2737
2634
  ...
2738
2635
 
2739
- class USERPREF_PT_system_os_settings(
2740
- bpy.types.Panel, SystemPanel, CenterAlignMixIn, bpy_types._GenericUI
2741
- ):
2636
+ class USERPREF_PT_system_os_settings(bpy.types.Panel, bpy_types._GenericUI):
2742
2637
  """Base class for panels to center align contents with some horizontal margin.
2743
2638
  Deriving classes need to implement a draw_centered(context, layout) function.
2744
2639
  """
@@ -2782,9 +2677,7 @@ class USERPREF_PT_system_os_settings(
2782
2677
  """
2783
2678
  ...
2784
2679
 
2785
- class USERPREF_PT_system_sound(
2786
- bpy.types.Panel, SystemPanel, CenterAlignMixIn, bpy_types._GenericUI
2787
- ):
2680
+ class USERPREF_PT_system_sound(bpy.types.Panel, bpy_types._GenericUI):
2788
2681
  """Base class for panels to center align contents with some horizontal margin.
2789
2682
  Deriving classes need to implement a draw_centered(context, layout) function.
2790
2683
  """
@@ -2821,9 +2714,7 @@ class USERPREF_PT_system_sound(
2821
2714
  """
2822
2715
  ...
2823
2716
 
2824
- class USERPREF_PT_system_video_sequencer(
2825
- bpy.types.Panel, SystemPanel, CenterAlignMixIn, bpy_types._GenericUI
2826
- ):
2717
+ class USERPREF_PT_system_video_sequencer(bpy.types.Panel, bpy_types._GenericUI):
2827
2718
  """Base class for panels to center align contents with some horizontal margin.
2828
2719
  Deriving classes need to implement a draw_centered(context, layout) function.
2829
2720
  """
@@ -2859,7 +2750,7 @@ class USERPREF_PT_system_video_sequencer(
2859
2750
  """
2860
2751
  ...
2861
2752
 
2862
- class USERPREF_PT_text_editor(bpy.types.Panel, FilePathsPanel, bpy_types._GenericUI):
2753
+ class USERPREF_PT_text_editor(bpy.types.Panel, bpy_types._GenericUI):
2863
2754
  bl_context: typing.Any
2864
2755
  bl_label: typing.Any
2865
2756
  bl_parent_id: typing.Any
@@ -2898,9 +2789,7 @@ class USERPREF_PT_text_editor(bpy.types.Panel, FilePathsPanel, bpy_types._Generi
2898
2789
  """
2899
2790
  ...
2900
2791
 
2901
- class USERPREF_PT_text_editor_presets(
2902
- bpy.types.Panel, bl_ui.utils.PresetPanel, bpy_types._GenericUI
2903
- ):
2792
+ class USERPREF_PT_text_editor_presets(bpy.types.Panel, bpy_types._GenericUI):
2904
2793
  bl_label: typing.Any
2905
2794
  bl_region_type: typing.Any
2906
2795
  bl_rna: typing.Any
@@ -2926,7 +2815,7 @@ class USERPREF_PT_text_editor_presets(
2926
2815
  """
2927
2816
  ...
2928
2817
 
2929
- class USERPREF_PT_theme(bpy.types.Panel, ThemePanel, bpy_types._GenericUI):
2818
+ class USERPREF_PT_theme(bpy.types.Panel, bpy_types._GenericUI):
2930
2819
  bl_context: typing.Any
2931
2820
  bl_label: typing.Any
2932
2821
  bl_options: typing.Any
@@ -2958,9 +2847,7 @@ class USERPREF_PT_theme(bpy.types.Panel, ThemePanel, bpy_types._GenericUI):
2958
2847
  """
2959
2848
  ...
2960
2849
 
2961
- class USERPREF_PT_theme_bone_color_sets(
2962
- bpy.types.Panel, ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
2963
- ):
2850
+ class USERPREF_PT_theme_bone_color_sets(bpy.types.Panel, bpy_types._GenericUI):
2964
2851
  """Base class for panels to center align contents with some horizontal margin.
2965
2852
  Deriving classes need to implement a draw_centered(context, layout) function.
2966
2853
  """
@@ -3004,9 +2891,7 @@ class USERPREF_PT_theme_bone_color_sets(
3004
2891
  """
3005
2892
  ...
3006
2893
 
3007
- class USERPREF_PT_theme_collection_colors(
3008
- bpy.types.Panel, ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
3009
- ):
2894
+ class USERPREF_PT_theme_collection_colors(bpy.types.Panel, bpy_types._GenericUI):
3010
2895
  """Base class for panels to center align contents with some horizontal margin.
3011
2896
  Deriving classes need to implement a draw_centered(context, layout) function.
3012
2897
  """
@@ -3050,9 +2935,7 @@ class USERPREF_PT_theme_collection_colors(
3050
2935
  """
3051
2936
  ...
3052
2937
 
3053
- class USERPREF_PT_theme_interface_gizmos(
3054
- bpy.types.Panel, ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
3055
- ):
2938
+ class USERPREF_PT_theme_interface_gizmos(bpy.types.Panel, bpy_types._GenericUI):
3056
2939
  """Base class for panels to center align contents with some horizontal margin.
3057
2940
  Deriving classes need to implement a draw_centered(context, layout) function.
3058
2941
  """
@@ -3090,9 +2973,7 @@ class USERPREF_PT_theme_interface_gizmos(
3090
2973
  """
3091
2974
  ...
3092
2975
 
3093
- class USERPREF_PT_theme_interface_icons(
3094
- bpy.types.Panel, ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
3095
- ):
2976
+ class USERPREF_PT_theme_interface_icons(bpy.types.Panel, bpy_types._GenericUI):
3096
2977
  """Base class for panels to center align contents with some horizontal margin.
3097
2978
  Deriving classes need to implement a draw_centered(context, layout) function.
3098
2979
  """
@@ -3130,9 +3011,7 @@ class USERPREF_PT_theme_interface_icons(
3130
3011
  """
3131
3012
  ...
3132
3013
 
3133
- class USERPREF_PT_theme_interface_state(
3134
- bpy.types.Panel, ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
3135
- ):
3014
+ class USERPREF_PT_theme_interface_state(bpy.types.Panel, bpy_types._GenericUI):
3136
3015
  """Base class for panels to center align contents with some horizontal margin.
3137
3016
  Deriving classes need to implement a draw_centered(context, layout) function.
3138
3017
  """
@@ -3170,9 +3049,7 @@ class USERPREF_PT_theme_interface_state(
3170
3049
  """
3171
3050
  ...
3172
3051
 
3173
- class USERPREF_PT_theme_interface_styles(
3174
- bpy.types.Panel, ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
3175
- ):
3052
+ class USERPREF_PT_theme_interface_styles(bpy.types.Panel, bpy_types._GenericUI):
3176
3053
  """Base class for panels to center align contents with some horizontal margin.
3177
3054
  Deriving classes need to implement a draw_centered(context, layout) function.
3178
3055
  """
@@ -3211,7 +3088,7 @@ class USERPREF_PT_theme_interface_styles(
3211
3088
  ...
3212
3089
 
3213
3090
  class USERPREF_PT_theme_interface_transparent_checker(
3214
- bpy.types.Panel, ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
3091
+ bpy.types.Panel, bpy_types._GenericUI
3215
3092
  ):
3216
3093
  """Base class for panels to center align contents with some horizontal margin.
3217
3094
  Deriving classes need to implement a draw_centered(context, layout) function.
@@ -3250,9 +3127,7 @@ class USERPREF_PT_theme_interface_transparent_checker(
3250
3127
  """
3251
3128
  ...
3252
3129
 
3253
- class USERPREF_PT_theme_strip_colors(
3254
- bpy.types.Panel, ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
3255
- ):
3130
+ class USERPREF_PT_theme_strip_colors(bpy.types.Panel, bpy_types._GenericUI):
3256
3131
  """Base class for panels to center align contents with some horizontal margin.
3257
3132
  Deriving classes need to implement a draw_centered(context, layout) function.
3258
3133
  """
@@ -3296,9 +3171,7 @@ class USERPREF_PT_theme_strip_colors(
3296
3171
  """
3297
3172
  ...
3298
3173
 
3299
- class USERPREF_PT_theme_text_style(
3300
- bpy.types.Panel, ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
3301
- ):
3174
+ class USERPREF_PT_theme_text_style(bpy.types.Panel, bpy_types._GenericUI):
3302
3175
  """Base class for panels to center align contents with some horizontal margin.
3303
3176
  Deriving classes need to implement a draw_centered(context, layout) function.
3304
3177
  """
@@ -3342,9 +3215,7 @@ class USERPREF_PT_theme_text_style(
3342
3215
  """
3343
3216
  ...
3344
3217
 
3345
- class USERPREF_PT_theme_user_interface(
3346
- bpy.types.Panel, ThemePanel, CenterAlignMixIn, bpy_types._GenericUI
3347
- ):
3218
+ class USERPREF_PT_theme_user_interface(bpy.types.Panel, bpy_types._GenericUI):
3348
3219
  """Base class for panels to center align contents with some horizontal margin.
3349
3220
  Deriving classes need to implement a draw_centered(context, layout) function.
3350
3221
  """
@@ -3387,9 +3258,7 @@ class USERPREF_PT_theme_user_interface(
3387
3258
  """
3388
3259
  ...
3389
3260
 
3390
- class USERPREF_PT_viewport_display(
3391
- bpy.types.Panel, ViewportPanel, CenterAlignMixIn, bpy_types._GenericUI
3392
- ):
3261
+ class USERPREF_PT_viewport_display(bpy.types.Panel, bpy_types._GenericUI):
3393
3262
  """Base class for panels to center align contents with some horizontal margin.
3394
3263
  Deriving classes need to implement a draw_centered(context, layout) function.
3395
3264
  """
@@ -3425,9 +3294,7 @@ class USERPREF_PT_viewport_display(
3425
3294
  """
3426
3295
  ...
3427
3296
 
3428
- class USERPREF_PT_viewport_quality(
3429
- bpy.types.Panel, ViewportPanel, CenterAlignMixIn, bpy_types._GenericUI
3430
- ):
3297
+ class USERPREF_PT_viewport_quality(bpy.types.Panel, bpy_types._GenericUI):
3431
3298
  """Base class for panels to center align contents with some horizontal margin.
3432
3299
  Deriving classes need to implement a draw_centered(context, layout) function.
3433
3300
  """
@@ -3463,9 +3330,7 @@ class USERPREF_PT_viewport_quality(
3463
3330
  """
3464
3331
  ...
3465
3332
 
3466
- class USERPREF_PT_viewport_selection(
3467
- bpy.types.Panel, ViewportPanel, CenterAlignMixIn, bpy_types._GenericUI
3468
- ):
3333
+ class USERPREF_PT_viewport_selection(bpy.types.Panel, bpy_types._GenericUI):
3469
3334
  """Base class for panels to center align contents with some horizontal margin.
3470
3335
  Deriving classes need to implement a draw_centered(context, layout) function.
3471
3336
  """
@@ -3502,9 +3367,7 @@ class USERPREF_PT_viewport_selection(
3502
3367
  """
3503
3368
  ...
3504
3369
 
3505
- class USERPREF_PT_viewport_subdivision(
3506
- bpy.types.Panel, ViewportPanel, CenterAlignMixIn, bpy_types._GenericUI
3507
- ):
3370
+ class USERPREF_PT_viewport_subdivision(bpy.types.Panel, bpy_types._GenericUI):
3508
3371
  """Base class for panels to center align contents with some horizontal margin.
3509
3372
  Deriving classes need to implement a draw_centered(context, layout) function.
3510
3373
  """
@@ -3549,9 +3412,7 @@ class USERPREF_PT_viewport_subdivision(
3549
3412
  """
3550
3413
  ...
3551
3414
 
3552
- class USERPREF_PT_viewport_textures(
3553
- bpy.types.Panel, ViewportPanel, CenterAlignMixIn, bpy_types._GenericUI
3554
- ):
3415
+ class USERPREF_PT_viewport_textures(bpy.types.Panel, bpy_types._GenericUI):
3555
3416
  """Base class for panels to center align contents with some horizontal margin.
3556
3417
  Deriving classes need to implement a draw_centered(context, layout) function.
3557
3418
  """