From b15880e0d841addc8d53c6546fd70a6deaa5146e Mon Sep 17 00:00:00 2001 From: iLLiCiTiT Date: Thu, 7 Jan 2021 18:13:32 +0100 Subject: [PATCH] changed label of save button for note to "Save note" --- pype/tools/workfiles/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pype/tools/workfiles/app.py b/pype/tools/workfiles/app.py index e0928e5fcd..e6b211152a 100644 --- a/pype/tools/workfiles/app.py +++ b/pype/tools/workfiles/app.py @@ -813,7 +813,7 @@ class SidePanelWidget(QtWidgets.QWidget): note_label = QtWidgets.QLabel("Artist note", self) note_input = QtWidgets.QPlainTextEdit(self) - btn_note_save = QtWidgets.QPushButton("Save", self) + btn_note_save = QtWidgets.QPushButton("Save note", self) main_layout = QtWidgets.QVBoxLayout(self) main_layout.setContentsMargins(0, 0, 0, 0)