From 3160199b044d63ffbc4b4d8bb3c7a852578dd355 Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Tue, 25 Jan 2022 14:15:19 +0100 Subject: [PATCH] fix grammar --- openpype/tools/publisher/widgets/precreate_widget.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/openpype/tools/publisher/widgets/precreate_widget.py b/openpype/tools/publisher/widgets/precreate_widget.py index c7a215d178..eaadfe890b 100644 --- a/openpype/tools/publisher/widgets/precreate_widget.py +++ b/openpype/tools/publisher/widgets/precreate_widget.py @@ -32,7 +32,7 @@ class PreCreateWidget(QtWidgets.QWidget): # 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 @@ class PreCreateWidget(QtWidgets.QWidget): 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)