X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/ddff8abaaa8a1a47062458ca7835624b11e93333..6b5c606eb0608be4aaaa1622bd0323b1516db32b:/src/minwii/widgets/songfilebrowser.py diff --git a/src/minwii/widgets/songfilebrowser.py b/src/minwii/widgets/songfilebrowser.py index 8dd4821..2e5cc78 100755 --- a/src/minwii/widgets/songfilebrowser.py +++ b/src/minwii/widgets/songfilebrowser.py @@ -59,7 +59,7 @@ class FileOpenDialog(FileDialog): self.body.tr() self.body.td(self.list, colspan=4, style=td_style) self.list.connect(CHANGE, self._item_select_changed_, None) - self.list.connect(CLICK, self._check_dbl_click_, None) + #self.list.connect(CLICK, self._check_dbl_click_, None) self._last_time_click = pygame.time.get_ticks() self.button_ok.connect(CLICK, self._button_okay_clicked_, None) self.body.tr() @@ -269,6 +269,12 @@ class FileOpenDialog(FileDialog): def event(self, e) : FileDialog.event(self, e) + + if e.type == CLICK and \ + e.button == 1 and \ + self.list.rect.collidepoint(e.pos) : + self._check_dbl_click_(e) + if e.type == KEYDOWN and e.key == K_RETURN : self._button_okay_clicked_(None) @@ -300,8 +306,8 @@ def _recurseDecomposition(uc): fullDeco = u''.join(filter(lambda c : isPrintable(c), fullDeco)) return fullDeco -def desacc(s) : - us = s.decode('utf-8', 'ignore') +def desacc(s, encoding='iso-8859-1') : + us = s.decode(encoding, 'ignore') ret = [] for uc in us : ret.append(_recurseDecomposition(uc))