From 82c7115f279e5735e2a23bc685bf56b4c4ddd98b Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Tue, 7 Sep 2021 16:59:54 +0200 Subject: [PATCH] added missing footer widget --- openpype/tools/new_publisher/window.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openpype/tools/new_publisher/window.py b/openpype/tools/new_publisher/window.py index 38902fef39..ac5cd37f68 100644 --- a/openpype/tools/new_publisher/window.py +++ b/openpype/tools/new_publisher/window.py @@ -122,7 +122,9 @@ class PublisherWindow(QtWidgets.QDialog): publish_btn.setIcon(get_icon("play")) publish_btn.setToolTip("Publish") - footer_layout = QtWidgets.QHBoxLayout() + footer_widget = QtWidgets.QWidget(subset_frame) + footer_layout = QtWidgets.QHBoxLayout(footer_widget) + footer_layout.setContentsMargins(0, 0, 0, 0) footer_layout.addWidget(message_input, 1) footer_layout.addWidget(reset_btn, 0) footer_layout.addWidget(stop_btn, 0)