mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
templates widget has something in
This commit is contained in:
parent
4b63222ac7
commit
f8d925f712
1 changed files with 14 additions and 0 deletions
|
|
@ -456,6 +456,20 @@ class TemplatesWidget(QtWidgets.QWidget):
|
|||
def __init__(self, parent=None):
|
||||
super(TemplatesWidget, self).__init__(parent)
|
||||
|
||||
body_widget = ExpandingWidget("Templates", self)
|
||||
content_widget = QtWidgets.QWidget(body_widget)
|
||||
body_widget.set_content_widget(content_widget)
|
||||
content_layout = QtWidgets.QVBoxLayout(content_widget)
|
||||
|
||||
label = QtWidgets.QLabel("Nothing yet", content_widget)
|
||||
content_layout.addWidget(label)
|
||||
|
||||
layout = QtWidgets.QVBoxLayout(self)
|
||||
layout.setContentsMargins(0, 0, 0, 0)
|
||||
layout.setSpacing(0)
|
||||
|
||||
layout.addWidget(body_widget)
|
||||
|
||||
def update_global_values(self, values):
|
||||
pass
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue