MCPcopy Create free account
hub / github.com/IChooseYou/Reclass / scrollToNodeId

Method scrollToNodeId

src/editor.cpp:723–731  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

721}
722
723void RcxEditor::scrollToNodeId(uint64_t nodeId) {
724 for (int i = 0; i < m_meta.size(); i++) {
725 if (m_meta[i].nodeId == nodeId && m_meta[i].lineKind != LineKind::Footer) {
726 m_sci->setCursorPosition(i, 0);
727 m_sci->ensureLineVisible(i);
728 return;
729 }
730 }
731}
732
733// ── Column span computation ──
734

Callers 2

createWorkspaceDockMethod · 0.45
toolUiActionMethod · 0.45

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected