Move georeferencing calculator panel until scene georeferencing panel.

Slowly all the N sidebar panels should be moved away.
This commit is contained in:
Dion Moult
2023-11-22 10:59:45 +11:00
parent b369c5e06e
commit 3e36e87311
2 changed files with 8 additions and 7 deletions
@@ -37,7 +37,7 @@ classes = (
operator.ImportPlot, operator.ImportPlot,
prop.BIMGeoreferenceProperties, prop.BIMGeoreferenceProperties,
ui.BIM_PT_gis, ui.BIM_PT_gis,
ui.BIM_PT_gis_utilities, ui.BIM_PT_gis_calculator,
) )
@@ -151,13 +151,14 @@ class BIM_PT_gis(Panel):
row.label(text=GeoreferenceData.data["true_derived_angle"]) row.label(text=GeoreferenceData.data["true_derived_angle"])
class BIM_PT_gis_utilities(Panel): class BIM_PT_gis_calculator(Panel):
bl_idname = "BIM_PT_gis_utilities" bl_idname = "BIM_PT_gis_calculator"
bl_label = "Georeferencing Utilities" bl_label = "Georeferencing Calculator"
bl_options = {"DEFAULT_CLOSED"} bl_options = {"DEFAULT_CLOSED"}
bl_space_type = "VIEW_3D" bl_space_type = "PROPERTIES"
bl_region_type = "UI" bl_region_type = "WINDOW"
bl_category = "BlenderBIM" bl_context = "scene"
bl_parent_id = "BIM_PT_gis"
def draw(self, context): def draw(self, context):
props = context.scene.BIMGeoreferenceProperties props = context.scene.BIMGeoreferenceProperties