Code hint */
| 2134 | |
| 2135 | /* Code hint */ |
| 2136 | void 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 | |
| 2145 | void CodeEdit::set_code_hint_draw_below(bool p_below) { |
| 2146 | if (code_hint_draw_below == p_below) { |
no outgoing calls
no test coverage detected