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:
Campbell Barton
2023-09-07 17:50:38 +10:00
parent 7362631fa4
commit 33a7345509
2 changed files with 0 additions and 4 deletions

View File

@ -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