diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2016-07-27 02:17:39 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2016-07-27 02:17:39 +0200 |
commit | 62a8b07a2264101fd6d9c201267966e3c5de0cd4 (patch) | |
tree | b11e6bc4e48e4051ee80427c391f9e4522382726 /helpers/key.py | |
parent | 6c42e32d98aa2e04d446f31b8e667a280acf4b54 (diff) | |
download | MusicSampler-62a8b07a2264101fd6d9c201267966e3c5de0cd4.tar.gz MusicSampler-62a8b07a2264101fd6d9c201267966e3c5de0cd4.tar.zst MusicSampler-62a8b07a2264101fd6d9c201267966e3c5de0cd4.zip |
Add other_only flag to stop_all_actions
Diffstat (limited to 'helpers/key.py')
-rw-r--r-- | helpers/key.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/key.py b/helpers/key.py index 2f94153..b5c1af9 100644 --- a/helpers/key.py +++ b/helpers/key.py | |||
@@ -191,7 +191,7 @@ class Key(ButtonBehavior, Widget): | |||
191 | for self.current_action in self.actions: | 191 | for self.current_action in self.actions: |
192 | if self.parent.keep_running(self, start_time): | 192 | if self.parent.keep_running(self, start_time): |
193 | self.list_actions() | 193 | self.list_actions() |
194 | self.current_action.run() | 194 | self.current_action.run(start_time) |
195 | self.list_actions(last_action_finished=True) | 195 | self.list_actions(last_action_finished=True) |
196 | 196 | ||
197 | self.parent.finished_running(self, start_time) | 197 | self.parent.finished_running(self, start_time) |