Skip to content

Commit a7f1ae2

Browse files
committed
fixed an issue where the closure wasn't properly formed, causing scope issues with the track index integer
1 parent b2b46ad commit a7f1ae2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

channel_display_group_object.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ ChannelDisplay.ChannelDisplayGroupController.prototype.init = function(banks)
6868

6969
var track = this.banks.trackbank.getTrack(x);
7070

71-
track.addNameObserver(80, "", function(string){cd.send_text(string);});
71+
track.addNameObserver(80, "", function(cd_obj){return function(string){cd_obj.send_text(string);}}(cd));
7272

7373
this.channels.push(cd);
7474
}

0 commit comments

Comments
 (0)