(timelineModel, objPath, rect, opts)
| 83579 | } |
| 83580 | |
| 83581 | function makeControlIcon(timelineModel, objPath, rect, opts) { |
| 83582 | var style = opts.style; |
| 83583 | var icon = createIcon(timelineModel.get(['controlStyle', objPath]), opts || {}, new BoundingRect(rect[0], rect[1], rect[2], rect[3])); // TODO createIcon won't use style in opt. |
| 83584 | |
| 83585 | if (style) { |
| 83586 | icon.setStyle(style); |
| 83587 | } |
| 83588 | |
| 83589 | return icon; |
| 83590 | } |
| 83591 | /** |
| 83592 | * Create symbol or update symbol |
| 83593 | * opt: basic position and event handlers |
no test coverage detected
searching dependent graphs…