La touche entrée équivaut au bouton « ouvrir ».
authorbenoit.pin <benoit.pin@fe552daf-6dbe-4428-90eb-1537e0879342>
Mon, 31 Jan 2011 14:29:08 +0000 (14:29 +0000)
committerbenoit.pin <benoit.pin@fe552daf-6dbe-4428-90eb-1537e0879342>
Mon, 31 Jan 2011 14:29:08 +0000 (14:29 +0000)
git-svn-id: https://svn.cri.ensmp.fr/svn/minwii/trunk@331 fe552daf-6dbe-4428-90eb-1537e0879342

src/minwii/widgets/songfilebrowser.py

index 6117218..8dd4821 100755 (executable)
@@ -7,6 +7,7 @@ $URL$
 """
 
 import pygame
+from pygame.locals import K_RETURN
 from pgu.gui import FileDialog
 import pgu.gui.basic as basic
 import pgu.gui.input as input
@@ -265,6 +266,11 @@ class FileOpenDialog(FileDialog):
             self._button_okay_clicked_(None)
         else :
             self._last_time_click = pygame.time.get_ticks()
+    
+    def event(self, e) :
+        FileDialog.event(self, e)
+        if e.type == KEYDOWN and e.key == K_RETURN :
+            self._button_okay_clicked_(None)
             
 
 # utils