diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-15 13:16:29 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-15 13:16:29 +0100 |
commit | f004db19d0987ee7aead110d5d8b8b3c058efa35 (patch) | |
tree | 97ffef6005e37ae9c29ea81607b487e510bccec5 /Applications/IRCClient/IRCAppWindow.cpp | |
parent | 850c7504a2e5cc418748f731e7bff6c723a6a6e4 (diff) | |
download | serenity-f004db19d0987ee7aead110d5d8b8b3c058efa35.zip |
IRCClient: Put the unhandled server messages nicely into the server log.
Diffstat (limited to 'Applications/IRCClient/IRCAppWindow.cpp')
-rw-r--r-- | Applications/IRCClient/IRCAppWindow.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Applications/IRCClient/IRCAppWindow.cpp b/Applications/IRCClient/IRCAppWindow.cpp index ddd160d719..1bc2eddadc 100644 --- a/Applications/IRCClient/IRCAppWindow.cpp +++ b/Applications/IRCClient/IRCAppWindow.cpp @@ -49,8 +49,6 @@ void IRCAppWindow::setup_widgets() m_subwindow_container = new GWidget(widget); m_subwindow_container->set_layout(make<GBoxLayout>(Orientation::Vertical)); - m_subwindow_container->set_fill_with_background_color(true); - m_subwindow_container->set_background_color(Color::Yellow); m_subwindow_container->set_size_policy(SizePolicy::Fill, SizePolicy::Fill); create_subwindow(IRCSubWindow::Server, "Server"); @@ -59,7 +57,5 @@ void IRCAppWindow::setup_widgets() void IRCAppWindow::create_subwindow(IRCSubWindow::Type type, const String& name) { auto* subwindow = new IRCSubWindow(m_client, type, name, m_subwindow_container); - subwindow->set_fill_with_background_color(true); - subwindow->set_background_color(Color::Magenta); m_subwindows.append(subwindow); } |