1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 23:55:07 +00:00

IRCClient: Hide all the table view headers.

This commit is contained in:
Andreas Kling 2019-03-15 14:57:35 +01:00
parent a5d538b389
commit ab92252ee6
2 changed files with 2 additions and 0 deletions

View file

@ -13,6 +13,7 @@ IRCClientWindow::IRCClientWindow(IRCClient& client, Type type, const String& nam
{
set_layout(make<GBoxLayout>(Orientation::Vertical));
m_table_view = new GTableView(this);
m_table_view->set_headers_visible(false);
m_table_view->set_font(Font::default_fixed_width_font());
m_client.register_subwindow(*this);