From 989df001423571234fe2ec2cda573a710ce5fed8 Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik Date: Wed, 25 Apr 2018 15:22:18 +0200 Subject: [PATCH] [Desktop Theme KCM] Show message on successful theme installation Makes it consistent with the other KCMs --- kcms/desktoptheme/kcm.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/kcms/desktoptheme/kcm.cpp b/kcms/desktoptheme/kcm.cpp index ef7c80dc6..ec6a92ac6 100644 --- a/kcms/desktoptheme/kcm.cpp +++ b/kcms/desktoptheme/kcm.cpp @@ -153,6 +153,7 @@ void KCMDesktopTheme::installThemeFromFile(const QUrl &file) this, [this, myProcess](int exitCode, QProcess::ExitStatus exitStatus) { Q_UNUSED(exitStatus); if (exitCode == 0) { + emit showSuccessMessage(i18n("Theme installed successfully.")); load(); } else { Q_EMIT showErrorMessage(i18n("Theme installation failed.")); -- GitLab