diff --git a/interface/fast_menu.py b/interface/fast_menu.py index c92ea11..b1a9f7c 100644 --- a/interface/fast_menu.py +++ b/interface/fast_menu.py @@ -164,6 +164,12 @@ def draw_single_object_predictions(self, context): was_profile_extrude = has_mod_pe and not has_mod_sol + if has_mod_sol: + layout.operator("nd.solidify", icon='MOD_SOLIDIFY') + + if has_mod_pe: + layout.operator("nd.profile_extrude", icon='EMPTY_SINGLE_ARROW') + if "Bool —" in context.object.name: layout.operator("nd.hydrate", icon='SHADING_RENDERED') layout.operator("nd.swap_solver", text="Swap Solver (Booleans)", icon='CON_OBJECTSOLVER') @@ -172,6 +178,7 @@ def draw_single_object_predictions(self, context): if was_profile_extrude or self.sketch: layout.operator("nd.solidify", icon='MOD_SOLIDIFY') + layout.separator() layout.operator("nd.mirror", icon='MOD_MIRROR') layout.operator("nd.screw", icon='MOD_SCREW')