[apps/code] Reload the variable box less often

This commit is contained in:
Léa Saviot
2020-03-26 15:54:52 +01:00
committed by Émilie Feral
parent e32a5ccc17
commit bc4d96bc3f
4 changed files with 10 additions and 3 deletions

View File

@@ -20,6 +20,10 @@ const char * EditorView::textToAutocomplete(int * length) const {
return m_textArea.textToAutocomplete(length);
}
bool EditorView::isAutocompleting() const {
return m_textArea.isAutocompleting();
}
void EditorView::resetSelection() {
m_textArea.resetSelection();
}