(item: SvgItem)
| 388 | } |
| 389 | |
| 390 | reverseSubPath(item: SvgItem) { |
| 391 | const idx = this.parsedPath.path.indexOf(item); |
| 392 | reversePath(this.parsedPath, idx); |
| 393 | this.afterModelChange(); |
| 394 | this.focusedItem = null; |
| 395 | } |
| 396 | |
| 397 | afterModelChange() { |
| 398 | this.reloadPoints(); |
nothing calls this directly
no test coverage detected