From f4227c93b210de366229624da11ddd01428eaa61 Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Mon, 22 May 2017 17:32:24 +0100 Subject: [PATCH] Changed the allfiles filter from *.* to * --- openlp/core/ui/lib/pathedit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlp/core/ui/lib/pathedit.py b/openlp/core/ui/lib/pathedit.py index 167be5357..1cb8143a3 100755 --- a/openlp/core/ui/lib/pathedit.py +++ b/openlp/core/ui/lib/pathedit.py @@ -61,7 +61,7 @@ class PathEdit(QtWidgets.QWidget): self.dialog_caption = '' self._path_type = PathType.Files self._path = '' - self.filters = '{all_files} (*.*)'.format(all_files=UiStrings().AllFiles) + self.filters = '{all_files} (*)'.format(all_files=UiStrings().AllFiles) self._setup(show_revert) def _setup(self, show_revert):