diff options
Diffstat (limited to 'application')
-rw-r--r-- | application/InstanceWindow.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/application/InstanceWindow.cpp b/application/InstanceWindow.cpp index cf445f12..75b17f36 100644 --- a/application/InstanceWindow.cpp +++ b/application/InstanceWindow.cpp @@ -149,10 +149,13 @@ void InstanceWindow::on_InstanceLaunchTask_changed(shared_qobject_ptr<LaunchTask m_proc = proc; } -void InstanceWindow::on_RunningState_changed(bool) +void InstanceWindow::on_RunningState_changed(bool running) { updateLaunchButtons(); m_container->refreshContainer(); + if(running) { + selectPage("log"); + } } void InstanceWindow::on_closeButton_clicked() |