fix: dev rebase errors

This commit is contained in:
NickVs2015
2026-05-29 17:09:52 +03:00
parent dbabac3bd5
commit 65664d69b9
3 changed files with 12 additions and 9 deletions
+5 -3
View File
@@ -234,10 +234,12 @@ void CoreController::initControllers()
Qt::QueuedConnection);
connect(m_connectionUiController, &ConnectionUiController::requestSetProcessedServer,
this, [this](const QString &serverId) {
m_serversUiController->setProcessedServerIndex(m_serversController->indexOfServerId(serverId));
m_serversUiController->setProcessedServerId(serverId);
}, Qt::QueuedConnection);
connect(m_installUiController, &InstallUiController::currentContainerUpdated,
m_connectionUiController, &ConnectionUiController::onCurrentContainerUpdated);
connect(m_installUiController, &InstallUiController::updateContainerFinished,
m_connectionUiController, [this](const QString &, bool) {
m_connectionUiController->onCurrentContainerUpdated();
});
m_apiNewsUiController = new ApiNewsUiController(m_newsModel, m_newsController, this);
setQmlContextProperty("ApiNewsController", m_apiNewsUiController);