1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:27:45 +00:00

HackStudio: Remove unused Editor::m_autocomplete_in_focus field

This commit is contained in:
Sam Atkins 2023-07-19 17:19:12 +01:00 committed by Sam Atkins
parent 4c551bfad9
commit 489f20d997

View file

@ -116,7 +116,6 @@ private:
GUI::TextPosition m_previous_text_position { 0, 0 }; GUI::TextPosition m_previous_text_position { 0, 0 };
bool m_hovering_editor { false }; bool m_hovering_editor { false };
bool m_hovering_clickable { false }; bool m_hovering_clickable { false };
bool m_autocomplete_in_focus { false };
RefPtr<GUI::Action> m_move_execution_to_line_action; RefPtr<GUI::Action> m_move_execution_to_line_action;
RefPtr<Core::Timer> m_tokens_info_timer; // Used for querying language server for syntax highlighting info RefPtr<Core::Timer> m_tokens_info_timer; // Used for querying language server for syntax highlighting info
OwnPtr<LanguageClient> m_language_client; OwnPtr<LanguageClient> m_language_client;