From 61c79792da46a117864a2cd27a3a0d251714de04 Mon Sep 17 00:00:00 2001 From: Colin Basnett Date: Thu, 29 Aug 2024 11:39:43 -0700 Subject: [PATCH] Fixed issue where old operator was being referenced --- bdk_addon/bsp/ui.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bdk_addon/bsp/ui.py b/bdk_addon/bsp/ui.py index 54477da..308d861 100644 --- a/bdk_addon/bsp/ui.py +++ b/bdk_addon/bsp/ui.py @@ -1,7 +1,7 @@ from bpy.types import Panel, Context from ..helpers import should_show_bdk_developer_extras -from ..bsp.operators import BDK_OT_apply_level_texturing_to_brushes, BDK_OT_ensure_tool_operators, BDK_OT_bsp_build +from ..bsp.operators import BDK_OT_ensure_tool_operators, BDK_OT_bsp_build def poll_is_active_object_bsp_brush(cls, context: Context): @@ -121,7 +121,6 @@ def draw(self, context): operators_header.label(text='Operators') if operators_panel is not None: - operators_panel.operator(BDK_OT_apply_level_texturing_to_brushes.bl_idname, icon='TEXTURE') operators_panel.operator(BDK_OT_bsp_build.bl_idname, icon='MOD_BUILD') if should_show_bdk_developer_extras(context):