From 77af658e7e1947eafbc29c955309589534fae72b Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Wed, 27 Mar 2024 19:25:11 +0800 Subject: [PATCH] Make sure to emit syncIsPausedChanged in syncIsPaused setter Signed-off-by: Claudio Cambra --- src/gui/systray.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/systray.cpp b/src/gui/systray.cpp index a8cf868d3a2da..5cd0dc9f414a7 100644 --- a/src/gui/systray.cpp +++ b/src/gui/systray.cpp @@ -576,6 +576,7 @@ void Systray::setSyncIsPaused(const bool syncIsPaused) } else { slotUnpauseAllFolders(); } + emit syncIsPausedChanged(); } /********************************************************************************************/