mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:17:35 +00:00
IRCClient: Use GSplitter in the window layouts.
This really brings the UI to life in a pleasant way. It's a bit annoying that you can't initiate a resize by clicking on the shading of a splitter resizer that actually belongs to the neighboring GFrame, I'm not sure how to fix that yet but I'll think of something.
This commit is contained in:
parent
9538c06a45
commit
74786f2d5a
2 changed files with 4 additions and 4 deletions
|
@ -10,6 +10,7 @@
|
|||
#include <LibGUI/GMenu.h>
|
||||
#include <LibGUI/GMenuBar.h>
|
||||
#include <LibGUI/GInputBox.h>
|
||||
#include <LibGUI/GSplitter.h>
|
||||
#include <stdio.h>
|
||||
|
||||
IRCAppWindow::IRCAppWindow()
|
||||
|
@ -136,8 +137,7 @@ void IRCAppWindow::setup_widgets()
|
|||
toolbar->add_action(*m_open_query_action);
|
||||
toolbar->add_action(*m_close_query_action);
|
||||
|
||||
auto* horizontal_container = new GWidget(widget);
|
||||
horizontal_container->set_layout(make<GBoxLayout>(Orientation::Horizontal));
|
||||
auto* horizontal_container = new GSplitter(Orientation::Horizontal, widget);
|
||||
|
||||
m_window_list = new GTableView(horizontal_container);
|
||||
m_window_list->set_headers_visible(false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue