Skip to content

Commit

Permalink
adopt fix for NodeProxy:-set from original Conductor repo
Browse files Browse the repository at this point in the history
various small fixes

Signed-off-by:  <st9fan@gmail.com>
  • Loading branch information
nuss committed Nov 12, 2015
1 parent eb5e964 commit 451d48e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 19 deletions.
5 changes: 3 additions & 2 deletions CVCenter/CVWidget.sc
Expand Up @@ -2923,8 +2923,9 @@ CVWidget {
this.oscReplyPort !? { addr.port_(this.oscReplyPort) };
midiOscEnv.oscReplyAddrs ?? { midiOscEnv.oscReplyAddrs = [] };
if(midiOscEnv.oscReplyAddrs.includesEqual(addr).not, {
midiOscEnv.oscReplyAddrs = midiOscEnv.oscReplyAddrs.add(addr);
midiOscEnv.oscReplyAddrs = midiOscEnv.oscReplyAddrs.asBag.contents.keys.asArray;
midiOscEnv.oscReplyAddrs = midiOscEnv.oscReplyAddrs.add(addr).asSet.asArray;
// midiOscEnv.oscReplyAddrs = midiOscEnv.oscReplyAddrs.asBag.contents.keys.asArray;
// midiOscEnv.oscReplyAddrs.postln;
});
if(thisCalib, {
if(midiOscEnv.calibConstraints.isNil, {
Expand Down
14 changes: 0 additions & 14 deletions CVCenter/CVWidgetMSEditor.sc
Expand Up @@ -1508,20 +1508,6 @@ CVWidgetMSEditor : AbstractCVWidgetEditor {
});
flow3.top_(flow3.top-76);

// if(actionsUIs[name].actionView.bounds.top > 256, {
// tabView3.bounds_(Point(
// tabView3.bounds.width,
// actionsUIs[name].actionView.bounds.top-26
// ))
// }, {
// tabView3.bounds_(Point(
// tabView3.bounds.width,
// 230
// ))
// });
//
// cTabView3.bounds_(tabView3.bounds);

}
)

Expand Down
2 changes: 1 addition & 1 deletion CVCenter/CVWidgetSpecsEditor.sc
@@ -1,4 +1,4 @@
/* (c) 2010-2012 Stefan Nussbaumer */
/* (c) Stefan Nussbaumer */
/*
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion CVCenter/extObject.sc
@@ -1,4 +1,4 @@
/* (c) 2010-2013 Stefan Nussbaumer */
/* (c) Stefan Nussbaumer */
/*
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion Conductor

0 comments on commit 451d48e

Please sign in to comment.