X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/64f0533e41c3ad60a31e078c7cfd2cf34d08d2c0..df5d8b30328acae3ba500882f50888644dbc0e32:/src/minwii/widgets/songfilebrowser.py diff --git a/src/minwii/widgets/songfilebrowser.py b/src/minwii/widgets/songfilebrowser.py index 33b5cd5..119a2f1 100755 --- a/src/minwii/widgets/songfilebrowser.py +++ b/src/minwii/widgets/songfilebrowser.py @@ -44,17 +44,21 @@ class FileOpenDialog(FileDialog): self.input_file = input.Input() self._list_dir_() self.button_ok = button.Button("Ouvrir") + self.button_sort_alpha = button.Button("A-Z") + self.button_sort_num = button.Button("0-9") self.body.tr() self.body.td(basic.Label("Dossier"), style=td_style, align=-1) self.body.td(self.input_dir, style=td_style) + self.body.td(self.button_sort_alpha) + self.body.td(self.button_sort_num) self.body.tr() - self.body.td(self.list, colspan=3, style=td_style) + self.body.td(self.list, colspan=4, style=td_style) self.list.connect(CHANGE, self._item_select_changed_, None) self.button_ok.connect(CLICK, self._button_okay_clicked_, None) self.body.tr() self.body.td(basic.Label("Fichier"), style=td_style, align=-1) self.body.td(self.input_file, style=td_style) - self.body.td(self.button_ok, style=td_style) + self.body.td(self.button_ok, style=td_style, colspan=2) self.value = None Dialog.__init__(self, self.title, self.body)