mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
Fix Context card being clickable in Nuke 14/15 only outside the Context label area. Previously you could only click on the far left or far right side of the context card to be able to select it and access the Context attributes.
Cosmetically the removal of the `<span>` doesn't do much to the Context card because it doesn't have a sublabel.
This commit is contained in:
parent
c3dac96dfd
commit
1c25e35777
1 changed files with 1 additions and 1 deletions
|
|
@ -211,7 +211,7 @@ class ContextCardWidget(CardWidget):
|
|||
icon_widget = PublishPixmapLabel(None, self)
|
||||
icon_widget.setObjectName("ProductTypeIconLabel")
|
||||
|
||||
label_widget = QtWidgets.QLabel(f"<span>{CONTEXT_LABEL}</span>", self)
|
||||
label_widget = QtWidgets.QLabel(CONTEXT_LABEL, self)
|
||||
|
||||
icon_layout = QtWidgets.QHBoxLayout()
|
||||
icon_layout.setContentsMargins(5, 5, 5, 5)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue