mirror of
https://github.com/blender/blender-addons.git
synced 2025-07-29 12:05:36 +00:00
Remove bl_options from menus which caused tests to fail
This previously did nothing (although the menus should not have defined them), since menus now have a bl_options so an invalid value caused an error.
This commit is contained in:
@ -641,7 +641,6 @@ class discombobulator_dodads_list(Menu):
|
||||
bl_idname = "OBJECT_MT_discombobulator_dodad_list"
|
||||
bl_label = "List of saved Doodads"
|
||||
bl_description = "List of the saved Doodad Object Names"
|
||||
bl_options = {"REGISTER"}
|
||||
|
||||
def draw(self, context):
|
||||
layout = self.layout
|
||||
@ -660,7 +659,6 @@ class discombob_help(Menu):
|
||||
bl_idname = "HELP_MT_discombobulator"
|
||||
bl_label = "Usage Information"
|
||||
bl_description = "Help"
|
||||
bl_options = {"REGISTER"}
|
||||
|
||||
def draw(self, context):
|
||||
layout = self.layout
|
||||
|
Reference in New Issue
Block a user