changeset 948:8bdd2d35ea61

remove KC old control-l feature Ignore-this: fce7b92e785c403863f321e3d6c58912
author drewp@bigasterisk.com
date Thu, 13 Jun 2013 19:49:29 +0000
parents f7ffd7aeb7f0
children 022e997b50c4
files bin/keyboardcomposer
diffstat 1 files changed, 1 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/bin/keyboardcomposer	Thu Jun 13 08:25:24 2013 +0000
+++ b/bin/keyboardcomposer	Thu Jun 13 19:49:29 2013 +0000
@@ -87,7 +87,6 @@
             bg='black', fg='white', pady=0)
         levellabel.pack(side=TOP)
         self.scale.pack(side=BOTTOM, expand=1, fill=BOTH)
-        bindkeys(self, "<Control-Key-l>", self.launch_subcomposer)
 
         for w in [self, self.namelabel, levellabel]:
             dragSourceRegister(w, 'copy', 'text/uri-list', sub.uri)
@@ -147,9 +146,6 @@
             return '.../' + u.split('/')[-1]
         self.namelabel.config(text=self.sub.graph.label(self.sub.uri) or shortUri(self.sub.uri))
 
-    def launch_subcomposer(self, *args):
-        subprocess.Popen(["bin/subcomposer", "--no-geometry", self.name])
-
 class KeyboardComposer(Frame, SubClient):
     def __init__(self, root, graph, session,
                  hw_sliders=True):
@@ -557,7 +553,7 @@
                           hw_sliders=not opts.no_sliders)
     kc.pack(fill=BOTH, expand=1)
 
-    for helpline in ["Bindings: B3 mute; C-l edit levels in subcomposer"]:
+    for helpline in ["Bindings: B3 mute"]:
         tk.Label(root,text=helpline, font="Helvetica -12 italic",
                  anchor='w').pack(side='top',fill='x')