fix sc class bug
This commit is contained in:
parent
473e329d75
commit
9c00fef14f
12
TextMate.sc
12
TextMate.sc
|
@ -4,14 +4,9 @@ SC3Controller {
|
|||
classvar nodes;
|
||||
|
||||
*initClass {
|
||||
var postToFront;
|
||||
nodes = List[];
|
||||
|
||||
Platform.case(\osx) {
|
||||
postToFront = {
|
||||
Document.listener.front;
|
||||
};
|
||||
|
||||
StartUp.add {
|
||||
this.addListeners;
|
||||
}
|
||||
|
@ -19,7 +14,12 @@ SC3Controller {
|
|||
}
|
||||
|
||||
*addListeners {
|
||||
var node;
|
||||
var node, postToFront;
|
||||
|
||||
postToFront = {
|
||||
Document.listener.front;
|
||||
};
|
||||
|
||||
if(nodes.isEmpty) {
|
||||
node = OSCresponderNode(nil, '/sc3ctrl/cmd') { |t, r, msg|
|
||||
msg[1].asString.interpretPrint;
|
||||
|
|
Loading…
Reference in New Issue