From a243eb87674a07338e9317486edda6746adeb001 Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik Date: Mon, 28 Aug 2017 14:08:57 +0200 Subject: [PATCH] [Icon Applet] Set busy to false when copying failed Otherwise we would spin indefinitely --- applets/icon/iconapplet.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/applets/icon/iconapplet.cpp b/applets/icon/iconapplet.cpp index fd248f7c5..e9329fd0b 100644 --- a/applets/icon/iconapplet.cpp +++ b/applets/icon/iconapplet.cpp @@ -144,6 +144,7 @@ void IconApplet::populate() if (!QFile::copy(localUrlString, backingDesktopFile)) { setLaunchErrorMessage(i18n("Failed to copy icon widget desktop file from '%1' to '%2'", localUrlString, backingDesktopFile)); + setBusy(false); return; }