diff --git a/openpype/tools/publisher/widgets/precreate_widget.py b/openpype/tools/publisher/widgets/precreate_widget.py index c7a215d178e..eaadfe890b4 100644 --- a/openpype/tools/publisher/widgets/precreate_widget.py +++ b/openpype/tools/publisher/widgets/precreate_widget.py @@ -32,7 +32,7 @@ def __init__(self, parent): # Creator does not have precreate attributes empty_label = QtWidgets.QLabel( - "This creator had no configurable options", + "This creator has no configurable options", empty_widget ) empty_label.setWordWrap(True) @@ -40,10 +40,8 @@ def __init__(self, parent): empty_layout = QtWidgets.QVBoxLayout(empty_widget) empty_layout.setContentsMargins(0, 0, 0, 0) - empty_layout.addStretch(1) empty_layout.addWidget(empty_label, 0, QtCore.Qt.AlignCenter) empty_layout.addWidget(no_creator_label, 0, QtCore.Qt.AlignCenter) - empty_layout.addStretch(1) main_layout = QtWidgets.QHBoxLayout(self) main_layout.setContentsMargins(0, 0, 0, 0)