added missing footer widget

This commit is contained in:
iLLiCiTiT 2021-09-07 16:59:54 +02:00
parent c1065c57c1
commit 82c7115f27

View file

@ -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)