()
| 5023 | } |
| 5024 | |
| 5025 | function ungroupSelection() { |
| 5026 | const sels = getSelectedElements().filter((s) => !s.locked && !s.hidden); |
| 5027 | if (!sels.length) return; |
| 5028 | sels.forEach((s) => (s.groupId = null)); |
| 5029 | renderLayers(); |
| 5030 | renderElements(); |
| 5031 | updateCode(); |
| 5032 | pushHistory(); |
| 5033 | } |
| 5034 | |
| 5035 | // Utility function to cycle through elements with Tab key |
| 5036 | function selectNextElement() { |
no test coverage detected