1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 01:22:10 +01:00

Add missing emit

This commit is contained in:
Javier Llorente 2023-05-02 20:11:32 +02:00 committed by Juraj Oravec
parent db0584f81e
commit 2c823962eb

View File

@ -172,7 +172,7 @@ void DownloadItem::downloadProgress(qint64 received, qint64 total)
m_total = total;
updateDownloadInfo(m_currSpeed, m_received, m_total);
progressChanged(m_currSpeed, m_received, m_total);
emit progressChanged(m_currSpeed, m_received, m_total);
}
int DownloadItem::progress()