From d030243b5c2b09a3f39cc355ef0fc7e51bcf79c0 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Mon, 28 Oct 2019 11:21:27 +0100 Subject: [PATCH] Updated tooltip on fixed width exports --- nw/gui/export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nw/gui/export.py b/nw/gui/export.py index 3b26861c..1477f174 100644 --- a/nw/gui/export.py +++ b/nw/gui/export.py @@ -392,7 +392,7 @@ class GuiExportMain(QWidget): self.fixedWidth.setMaximum(999) self.fixedWidth.setSingleStep(1) self.fixedWidth.setValue(self.optState.getSetting("fixWidth")) - self.fixedWidth.setToolTip("Applies to .txt, .md and .tex files. 0 disables the feature.") + self.fixedWidth.setToolTip("Applies to .txt and .md files. A value of '0' disables the feature.") self.addSettingsForm.addWidget(QLabel("Fixed width"), 0, 0) self.addSettingsForm.addWidget(self.fixedWidth, 0, 1)