| 714 | } |
| 715 | |
| 716 | int RcxEditor::currentNodeIndex() const { |
| 717 | int line, col; |
| 718 | m_sci->getCursorPosition(&line, &col); |
| 719 | auto* lm = metaForLine(line); |
| 720 | return lm ? lm->nodeIdx : -1; |
| 721 | } |
| 722 | |
| 723 | void RcxEditor::scrollToNodeId(uint64_t nodeId) { |
| 724 | for (int i = 0; i < m_meta.size(); i++) { |
no outgoing calls
no test coverage detected