summaryrefslogtreecommitdiff
path: root/interface/interface.py
diff options
context:
space:
mode:
Diffstat (limited to 'interface/interface.py')
-rw-r--r--interface/interface.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/interface/interface.py b/interface/interface.py
index 832663e..6f68b2f 100644
--- a/interface/interface.py
+++ b/interface/interface.py
@@ -224,7 +224,7 @@ class Interface:
else:
continue
- for n, c in enumerate(f.channels, 1):
+ for n, c in enumerate(f.channels):
for s, e in cr[1]:
if (s <= n <= e) or (e == -1 and n >= s):
channels.append(c)
@@ -725,7 +725,7 @@ class Interface:
self.current_cv.chaser.advance_mode = mode
self.current_cv.set_chaser(self.current_cv.chaser, self.current_cv.selected)
- def base_copy(self, num, name=None):
+ def base_copy(self, name, num):
with self.w_lock:
## TODO: Implement this in BLC
if num not in self.w.functions:
@@ -786,8 +786,7 @@ class Interface:
("list audio", lambda: self.list_functions(AUDIO)),
("list joins", lambda: self.list_functions(JOIN)),
- ("copy $num", self.base_copy),
- ("copy $num $quoted_string", self.base_copy),
+ ("new scene $quoted_string from $num", self.base_copy),
("currentstatus", self.current_status),