Skip to content

Commit

Permalink
Rename lipsum button
Browse files Browse the repository at this point in the history
  • Loading branch information
vkbo committed Nov 28, 2023
1 parent 52d1d87 commit 5451095
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions novelwriter/tools/lipsum.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ def __init__(self, parent: QWidget) -> None:
self.btnClose = self.buttonBox.addButton(QDialogButtonBox.Close)
self.btnClose.setAutoDefault(False)

self.btnSave = self.buttonBox.addButton(self.tr("Insert"), QDialogButtonBox.ActionRole)
self.btnSave.clicked.connect(self._doInsert)
self.btnSave.setAutoDefault(False)
self.btnInsert = self.buttonBox.addButton(self.tr("Insert"), QDialogButtonBox.ActionRole)
self.btnInsert.clicked.connect(self._doInsert)
self.btnInsert.setAutoDefault(False)

self.rejected.connect(self.close)

Expand Down

0 comments on commit 5451095

Please sign in to comment.