aboutsummaryrefslogtreecommitdiff
path: root/helpers/actions/seek.py
diff options
context:
space:
mode:
Diffstat (limited to 'helpers/actions/seek.py')
-rw-r--r--helpers/actions/seek.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/helpers/actions/seek.py b/helpers/actions/seek.py
deleted file mode 100644
index 467af7d..0000000
--- a/helpers/actions/seek.py
+++ /dev/null
@@ -1,19 +0,0 @@
1def run(action, music=None, value=0, delta=False, **kwargs):
2 for music in action.music_list(music):
3 music.seek(value=value, delta=delta)
4
5def description(action, music=None, value=0, delta=False, **kwargs):
6 if delta:
7 if music is not None:
8 return "moving music « {} » by {:+d}s" \
9 .format(music.name, value)
10 else:
11 return "moving all musics by {:+d}s" \
12 .format(value)
13 else:
14 if music is not None:
15 return "moving music « {} » to position {}s" \
16 .format(music.name, value)
17 else:
18 return "moving all musics to position {}s" \
19 .format(value)