# HG changeset patch # User drewp@bigasterisk.com # Date 1465665485 0 # Node ID da8f36f809f12aa3827d048cc7b625a16ac5855e # Parent b8d42a411e17daede5c00270d4a596cef77d3aab shorten note labels Ignore-this: d84baceec8da54ec2c9e6fb6e2e238b8 diff -r b8d42a411e17 -r da8f36f809f1 light9/web/timeline/timeline.coffee --- a/light9/web/timeline/timeline.coffee Sat Jun 11 17:17:23 2016 +0000 +++ b/light9/web/timeline/timeline.coffee Sat Jun 11 17:18:05 2016 +0000 @@ -366,8 +366,8 @@ screenPos = (pt) => $V([@zoomInX(pt.e(1)), @offsetTop + (1 - pt.e(2)) * @offsetHeight]) - @dia.setNote(@uri, (screenPos(pt) for pt in worldPts), - @graph.uriValue(@uri, U(':effectClass'))) + label = @graph.uriValue(@uri, U(':effectClass')).replace(/.*\//, '') + @dia.setNote(@uri, (screenPos(pt) for pt in worldPts), label) catch e log("during resize of #{@uri}: #{@e}")