mirror of
https://github.com/RGBCube/serenity
synced 2025-07-23 17:27:35 +00:00
HackStudio: Move the ProcessStateWidget below the TerminalWidget
This looks a bit less janky when hiding/unhiding.. :^)
This commit is contained in:
parent
deabc7e13b
commit
4e25d69dba
1 changed files with 2 additions and 2 deletions
|
@ -118,11 +118,11 @@ TerminalWrapper::TerminalWrapper(GWidget* parent)
|
||||||
{
|
{
|
||||||
set_layout(make<GBoxLayout>(Orientation::Vertical));
|
set_layout(make<GBoxLayout>(Orientation::Vertical));
|
||||||
|
|
||||||
m_process_state_widget = ProcessStateWidget::construct(this);
|
|
||||||
|
|
||||||
RefPtr<CConfigFile> config = CConfigFile::get_for_app("Terminal");
|
RefPtr<CConfigFile> config = CConfigFile::get_for_app("Terminal");
|
||||||
m_terminal_widget = TerminalWidget::construct(-1, false, config);
|
m_terminal_widget = TerminalWidget::construct(-1, false, config);
|
||||||
add_child(*m_terminal_widget);
|
add_child(*m_terminal_widget);
|
||||||
|
|
||||||
|
m_process_state_widget = ProcessStateWidget::construct(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
TerminalWrapper::~TerminalWrapper()
|
TerminalWrapper::~TerminalWrapper()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue