changeset 1757:3368aeaded44

fix note update Ignore-this: 213c42b10be25b0fd59c68d5ba3bdda3
author Drew Perttula <drewp@bigasterisk.com>
date Mon, 28 May 2018 00:25:29 +0000
parents a73468c02bce
children 887eb43b389a
files light9/web/timeline/timeline.coffee
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/light9/web/timeline/timeline.coffee	Sun May 27 02:20:42 2018 +0000
+++ b/light9/web/timeline/timeline.coffee	Mon May 28 00:25:29 2018 +0000
@@ -435,8 +435,8 @@
 # in the graph.
 class Note
   constructor: (@parentElem, @container, @project, @graph, @selection, @uri, @setAdjuster, @song, @viewState, @rowTopY, @rowBotY) ->
-    @adjusterIds = new Set() # id
-    @graph.runHandler(@draw.bind(@), 'note draw')
+    @adjusterIds = new Set() # id string
+    @graph.runHandler(@draw.bind(@), "note draw #{@uri.value}")
     ko.computed @draw.bind(@)
 
   destroy: ->