MCPcopy Create free account
hub / github.com/Redot-Engine/redot-engine / unfold_line

Method unfold_line

scene/gui/code_edit.cpp:1826–1832  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1824}
1825
1826void CodeEdit::unfold_line(int p_line) {
1827 bool line_unfolded = _unfold_line(p_line);
1828
1829 if (line_unfolded) {
1830 emit_signal(SNAME("_fold_line_updated"));
1831 }
1832}
1833
1834void CodeEdit::toggle_foldable_line(int p_line) {
1835 ERR_FAIL_INDEX(p_line, get_line_count());

Callers 7

_searchMethod · 0.80
_replaceMethod · 0.80
_replace_allMethod · 0.80
goto_lineMethod · 0.80
goto_line_selectionMethod · 0.80
goto_line_centeredMethod · 0.80
test_code_edit.hFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected