From 5e40bd5deb3b449d6e87f34889b3b378ca181c56 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sat, 6 Feb 2021 18:31:37 +0100 Subject: [PATCH] Change text on build tool print button --- nw/gui/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nw/gui/build.py b/nw/gui/build.py index dae234c0..f3d0cad5 100644 --- a/nw/gui/build.py +++ b/nw/gui/build.py @@ -382,7 +382,7 @@ class GuiBuildNovel(QDialog): self.btnPrint = QPushButton("Print") self.btnPrint.setMenu(self.printMenu) - self.printSend = QAction("Send to Printer", self) + self.printSend = QAction("Print Preview", self) self.printSend.triggered.connect(self._printDocument) self.printMenu.addAction(self.printSend)