From 489f20d99703056bf66378d0f2eb2c0367c0b839 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Wed, 19 Jul 2023 17:19:12 +0100 Subject: [PATCH] HackStudio: Remove unused Editor::m_autocomplete_in_focus field --- Userland/DevTools/HackStudio/Editor.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/DevTools/HackStudio/Editor.h b/Userland/DevTools/HackStudio/Editor.h index 6bb7059d4d3..ad1a6a14346 100644 --- a/Userland/DevTools/HackStudio/Editor.h +++ b/Userland/DevTools/HackStudio/Editor.h @@ -116,7 +116,6 @@ private: GUI::TextPosition m_previous_text_position { 0, 0 }; bool m_hovering_editor { false }; bool m_hovering_clickable { false }; - bool m_autocomplete_in_focus { false }; RefPtr m_move_execution_to_line_action; RefPtr m_tokens_info_timer; // Used for querying language server for syntax highlighting info OwnPtr m_language_client;