Emit cursor event after listing on unlisting leaf nodes

This commit is contained in:
Inez Korczynski 2011-12-08 22:03:27 +00:00
parent 80d5067813
commit f55bd4b77c

View file

@ -124,6 +124,7 @@ es.ListButtonTool.prototype.list = function( nodes, style ) {
}
surface.model.select( selection, true );
surface.emitCursor();
};
es.ListButtonTool.prototype.unlist = function( nodes ) {
@ -265,6 +266,7 @@ es.ListButtonTool.prototype.unlist = function( nodes ) {
}
}
surface.model.select( selection, true );
surface.emitCursor();
};
es.ListButtonTool.prototype.onClick = function() {