X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/63fd81dc12159a8621cca5004558ae7dac2c9395..3c10e656308bd0f29d8ac4d15f7f95f29aec1697:/src/minwii/widgets/instrumentselector.py diff --git a/src/minwii/widgets/instrumentselector.py b/src/minwii/widgets/instrumentselector.py index f2ef178..403f3bc 100755 --- a/src/minwii/widgets/instrumentselector.py +++ b/src/minwii/widgets/instrumentselector.py @@ -72,7 +72,9 @@ class InstrumentSelector(pygame.sprite.LayeredDirty, EventHandlerMixin) : @event_handler(pygame.KEYDOWN) def handleKeyDown(self, event) : - if event.key == pygame.K_q: + if event.key == pygame.K_q or \ + event.unicode == u'q' or \ + pygame.K_ESCAPE: self.stop() @event_handler(pygame.MOUSEMOTION)