GH-1445 update page list when version and log pages need it

This commit is contained in:
Petr Mrázek
2016-11-07 00:18:27 +01:00
parent 1276ecdbb7
commit 7cff5ba2e1
7 changed files with 20 additions and 3 deletions

View File

@ -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()
{
}