From fa18010477821f114953015677daa789580a4683 Mon Sep 17 00:00:00 2001 From: Itamar Date: Sat, 23 Jan 2021 16:55:19 +0200 Subject: HackStudio: Integate with C++ parser-based autocomplete By default, C++ auto completion will still be performed by the lexer-based logic. However, the parser-based logic can be switched on via the menubar. --- Userland/Libraries/LibGUI/AutocompleteProvider.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'Userland/Libraries/LibGUI') diff --git a/Userland/Libraries/LibGUI/AutocompleteProvider.cpp b/Userland/Libraries/LibGUI/AutocompleteProvider.cpp index 383bead624..d136c17413 100644 --- a/Userland/Libraries/LibGUI/AutocompleteProvider.cpp +++ b/Userland/Libraries/LibGUI/AutocompleteProvider.cpp @@ -109,6 +109,7 @@ AutocompleteBox::AutocompleteBox(TextEditor& editor) m_suggestion_view = m_popup_window->set_main_widget(); m_suggestion_view->set_column_headers_visible(false); + m_suggestion_view->set_column_width(1, 100); } void AutocompleteBox::update_suggestions(Vector&& suggestions) -- cgit v1.2.3