diff options
Diffstat (limited to 'application/InstanceWindow.cpp')
-rw-r--r-- | application/InstanceWindow.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/application/InstanceWindow.cpp b/application/InstanceWindow.cpp index f76ae18d..e3d4af66 100644 --- a/application/InstanceWindow.cpp +++ b/application/InstanceWindow.cpp @@ -132,7 +132,7 @@ void InstanceWindow::on_InstanceLaunchTask_changed(std::shared_ptr<LaunchTask> p void InstanceWindow::on_RunningState_changed(bool running) { setKillButton(running); - m_container->refresh(); + m_container->refreshContainer(); } void InstanceWindow::on_closeButton_clicked() @@ -195,6 +195,11 @@ bool InstanceWindow::selectPage(QString pageId) return m_container->selectPage(pageId); } +void InstanceWindow::refreshContainer() +{ + m_container->refreshContainer(); +} + InstanceWindow::~InstanceWindow() { } |