mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-11 18:20:43 +09:00
LibGUI: Increase width of Autocomplete suggestions box
This commit is contained in:
parent
c4ff7c6f8e
commit
ccd491594f
Notes:
sideshowbarker
2024-07-18 17:32:56 +09:00
Author: https://github.com/itamar8910
Commit: ccd491594f
Pull-request: https://github.com/SerenityOS/serenity/pull/7383
Reviewed-by: https://github.com/gunnarbeutner
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