diff --git a/src/blenderbim/blenderbim/bim/module/classification/ui.py b/src/blenderbim/blenderbim/bim/module/classification/ui.py index 9cc7a970a0..5c828c4d26 100644 --- a/src/blenderbim/blenderbim/bim/module/classification/ui.py +++ b/src/blenderbim/blenderbim/bim/module/classification/ui.py @@ -239,6 +239,8 @@ class ReferenceUI: name = reference["Identification"] or "No Identification" row.label(text=name, icon="ASSET_MANAGER") row.label(text=reference["Name"] or "") + if reference["Location"]: + row.operator("bim.open_uri", icon="URL", text="").uri = reference["Location"] if not self.props.active_reference_id: op = row.operator("bim.enable_editing_classification_reference", text="", icon="GREASEPENCIL") op.reference = reference["id"]