# HG changeset patch # User drewp@bigasterisk.com # Date 1371152969 0 # Node ID 8bdd2d35ea6197f340e44b5e61e7c01e918f37db # Parent f7ffd7aeb7f0c01816ad897ade2265ca3329d60d remove KC old control-l feature Ignore-this: fce7b92e785c403863f321e3d6c58912 diff -r f7ffd7aeb7f0 -r 8bdd2d35ea61 bin/keyboardcomposer --- 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, "", 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')