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

Method set_code_hint

scene/gui/code_edit.cpp:2136–2143  ·  view source on GitHub ↗

Code hint */

Source from the content-addressed store, hash-verified

2134
2135/* Code hint */
2136void CodeEdit::set_code_hint(const String &p_hint) {
2137 if (code_hint == p_hint) {
2138 return;
2139 }
2140 code_hint = p_hint;
2141 code_hint_xpos = -0xFFFF;
2142 queue_redraw();
2143}
2144
2145void CodeEdit::set_code_hint_draw_below(bool p_below) {
2146 if (code_hint_draw_below == p_below) {

Callers 6

_code_complete_scriptMethod · 0.80
_code_complete_scriptMethod · 0.80
_searchMethod · 0.80
goto_lineMethod · 0.80
goto_line_selectionMethod · 0.80
goto_line_centeredMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected