Merge branch 'develop' into enhancement/allow_farm_instance_creation_without_colorspace

This commit is contained in:
Jakub Trllo 2025-11-18 11:08:26 +01:00 committed by GitHub
commit 7ba9ffc758
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -212,6 +212,11 @@ class ContextCardWidget(CardWidget):
icon_widget.setObjectName("ProductTypeIconLabel")
label_widget = QtWidgets.QLabel(f"<span>{CONTEXT_LABEL}</span>", self)
# HTML text will cause that label start catch mouse clicks
# - disabling with changing interaction flag
label_widget.setTextInteractionFlags(
QtCore.Qt.NoTextInteraction
)
icon_layout = QtWidgets.QHBoxLayout()
icon_layout.setContentsMargins(5, 5, 5, 5)