From edf274c3fc9dc535eadd722896189f12003c3f29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Moreira?= Date: Thu, 9 Jan 2020 15:50:27 -0300 Subject: [PATCH] [improvement][ui] improving file chooser labels --- bauh/view/qt/components.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bauh/view/qt/components.py b/bauh/view/qt/components.py index 5f6e4e30..fa5a9c93 100644 --- a/bauh/view/qt/components.py +++ b/bauh/view/qt/components.py @@ -318,7 +318,7 @@ class FormQt(QGroupBox): options = QFileDialog.Options() if c.allowed_extensions: - exts = ';;'.join({'{} {} (*.{})'.format(self.i18n['files'].capitalize(), e.upper(), e) for e in c.allowed_extensions}) + exts = ';;'.join({'*.{}'.format(e) for e in c.allowed_extensions}) else: exts = '{}} (*);;'.format(self.i18n['all_files'].capitalize())