diff --git a/kcms/colors/colors.cpp b/kcms/colors/colors.cpp index 0656f2248..fe3f1f147 100644 --- a/kcms/colors/colors.cpp +++ b/kcms/colors/colors.cpp @@ -445,9 +445,9 @@ void KCMColors::applyWallpaperAccentColor() void KCMColors::wallpaperAccentColorArrivedSlot(QDBusPendingCallWatcher *call) { - QDBusPendingReply reply = *call; + QDBusPendingReply reply = *call; if (!reply.isError()) { - setAccentColor(QColor(reply.value())); + setAccentColor(QColor::fromRgba(reply.value())); } call->deleteLater(); }