From 2abacc1b2fc59ad53b593b3510020fe24398a737 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Thu, 24 Oct 2019 22:18:41 +0200 Subject: [PATCH] Some cleanup of the export gui --- nw/gui/export.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/nw/gui/export.py b/nw/gui/export.py index da09f3f2..5cd16d3f 100644 --- a/nw/gui/export.py +++ b/nw/gui/export.py @@ -371,7 +371,7 @@ class GuiExportMain(QWidget): self.fixedWidth.setMaximum(999) self.fixedWidth.setSingleStep(1) self.fixedWidth.setValue(self.optState.getSetting("fixWidth")) - self.fixedWidth.setToolTip("0 disables the feature. Applies to .txt, .md and .tex files.") + self.fixedWidth.setToolTip("Applies to .txt, .md and .tex files. 0 disables the feature.") self.addSettingsForm.addWidget(QLabel("Fixed width"), 0, 0) self.addSettingsForm.addWidget(self.fixedWidth, 0, 1) @@ -416,8 +416,9 @@ class GuiExportMain(QWidget): "Text files (*.txt)", "Markdown files (*.md)", "HTML files (*.htm *.html)", - "Open document files (*.odt)", - "LaTeX files (*.tex)", + # "Open document files (*.odt)", + # "LaTeX files (*.tex)", + "All files (*.*)", ] dlgOpt = QFileDialog.Options()