From 2c823962eb37b8d4dc90ee09c4dc64ee12f01787 Mon Sep 17 00:00:00 2001 From: Javier Llorente Date: Tue, 2 May 2023 20:11:32 +0200 Subject: [PATCH] Add missing emit --- src/lib/downloads/downloaditem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/downloads/downloaditem.cpp b/src/lib/downloads/downloaditem.cpp index 924691901..381a2e204 100644 --- a/src/lib/downloads/downloaditem.cpp +++ b/src/lib/downloads/downloaditem.cpp @@ -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()