aboutsummaryrefslogtreecommitdiff
path: root/helpers/actions/unpause.py
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2016-07-26 16:27:51 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2016-07-26 16:27:51 +0200
commitc4f4f2a1d330d8e09021619bbb8dcaac4df0a602 (patch)
tree56f030600ad200632d0e9030c3b470dcb846215d /helpers/actions/unpause.py
parenta1d7f30a1cafbfcf3a0a561fcab71ce6437a3d45 (diff)
downloadMusicSampler-c4f4f2a1d330d8e09021619bbb8dcaac4df0a602.tar.gz
MusicSampler-c4f4f2a1d330d8e09021619bbb8dcaac4df0a602.tar.zst
MusicSampler-c4f4f2a1d330d8e09021619bbb8dcaac4df0a602.zip
Move actions to separate files
Diffstat (limited to 'helpers/actions/unpause.py')
-rw-r--r--helpers/actions/unpause.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/helpers/actions/unpause.py b/helpers/actions/unpause.py
new file mode 100644
index 0000000..5fa88c3
--- /dev/null
+++ b/helpers/actions/unpause.py
@@ -0,0 +1,10 @@
1def run(action, music=None, **kwargs):
2 for music in action.music_list(music):
3 if music.is_loaded_paused():
4 music.unpause()
5
6def description(action, music=None, **kwargs):
7 if music is not None:
8 return "unpausing « {} »".format(music.name)
9 else:
10 return "unpausing all musics"