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:
parent
c4ff7c6f8e
commit
ccd491594f
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue