Skip to content

Commit

Permalink
fix CVCenter:*use
Browse files Browse the repository at this point in the history
*use has an argument 'slot', denoting the 'lo' and 'hi' slot in a
CVWidget2D but it wasn't used because the assignment `var thisSlot =
slot.asSymbol` was missing.

Signed-off-by: Stefan Nussbaumer <st9fan@gmail.com>
  • Loading branch information
nuss committed Aug 10, 2018
1 parent 8549a73 commit 713a630
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CVCenter/CVCenter.sc
Expand Up @@ -1318,7 +1318,7 @@ CVCenter {
// add a CV using spec inference
*use { |key, spec, value, tab, slot, svItems, connectS, connectTF|
var thisKey = key.asSymbol;
var thisSlot;
var thisSlot = slot.asSymbol;

all[thisKey] !? {
if (all[thisKey].class !== Event) {
Expand Down

0 comments on commit 713a630

Please sign in to comment.