1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 09:48:11 +00:00

LibGUI: Increase width of Autocomplete suggestions box

This commit is contained in:
Itamar 2021-05-22 11:24:27 +03:00 committed by Andreas Kling
parent c4ff7c6f8e
commit ccd491594f

View file

@ -84,7 +84,7 @@ AutocompleteBox::AutocompleteBox(TextEditor& editor)
{
m_popup_window = GUI::Window::construct(m_editor->window());
m_popup_window->set_window_type(GUI::WindowType::Tooltip);
m_popup_window->set_rect(0, 0, 200, 100);
m_popup_window->set_rect(0, 0, 300, 100);
m_suggestion_view = m_popup_window->set_main_widget<GUI::TableView>();
m_suggestion_view->set_column_headers_visible(false);