Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
fix grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Jan 25, 2022
1 parent d739364 commit 3160199
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions openpype/tools/publisher/widgets/precreate_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,16 @@ 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)
empty_label.setVisible(False)

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)
Expand Down

0 comments on commit 3160199

Please sign in to comment.