Qt: set smaller default log frame height

This commit is contained in:
Megamouse 2018-05-22 11:02:59 +02:00 committed by Ani
parent 7c031c2330
commit 62efe6e5be
1 changed files with 1 additions and 0 deletions

View File

@ -1429,6 +1429,7 @@ void main_window::CreateDockWindows()
m_mw->addDockWidget(Qt::LeftDockWidgetArea, m_logFrame);
m_mw->addDockWidget(Qt::RightDockWidgetArea, m_debuggerFrame);
m_mw->setDockNestingEnabled(true);
m_mw->resizeDocks({ m_logFrame }, { m_mw->sizeHint().height() / 10 }, Qt::Orientation::Vertical);
setCentralWidget(m_mw);
connect(m_logFrame, &log_frame::LogFrameClosed, [=]()