mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 21:32:15 +01:00
renamed 'footer' to 'footer_widget'
This commit is contained in:
parent
6d49ebf3a8
commit
98a6225e5f
1 changed files with 6 additions and 6 deletions
|
|
@ -116,18 +116,18 @@ class LoaderWindow(QtWidgets.QDialog):
|
|||
main_splitter.addWidget(thumb_ver_splitter)
|
||||
|
||||
# TODO keep footer size by message size
|
||||
footer = QtWidgets.QWidget(self)
|
||||
footer.setFixedHeight(20)
|
||||
footer_widget = QtWidgets.QWidget(self)
|
||||
footer_widget.setFixedHeight(20)
|
||||
|
||||
message_label = QtWidgets.QLabel(footer)
|
||||
message_label = QtWidgets.QLabel(footer_widget)
|
||||
|
||||
footer_layout = QtWidgets.QVBoxLayout(footer)
|
||||
footer_layout.addWidget(message_label)
|
||||
footer_layout = QtWidgets.QVBoxLayout(footer_widget)
|
||||
footer_layout.setContentsMargins(0, 0, 0, 0)
|
||||
footer_layout.addWidget(message_label)
|
||||
|
||||
layout = QtWidgets.QVBoxLayout(self)
|
||||
layout.addWidget(main_splitter)
|
||||
layout.addWidget(footer)
|
||||
layout.addWidget(footer_widget)
|
||||
|
||||
self.data = {
|
||||
"widgets": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue