1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 10:18:15 +09:00

IRCClient: Size columns to-fit in the window and member views

This commit is contained in:
Andreas Kling 2019-09-04 19:07:59 +02:00
parent f4042903b9
commit 75eb84c7e4
Notes: sideshowbarker 2024-07-19 12:18:25 +09:00
2 changed files with 2 additions and 0 deletions

View file

@ -179,6 +179,7 @@ void IRCAppWindow::setup_widgets()
m_window_list = new GTableView(horizontal_container);
m_window_list->set_headers_visible(false);
m_window_list->set_alternating_row_colors(false);
m_window_list->set_size_columns_to_fit_content(true);
m_window_list->set_model(m_client.client_window_list_model());
m_window_list->set_activates_on_selection(true);
m_window_list->set_size_policy(SizePolicy::Fixed, SizePolicy::Fill);