From a0c80d6bc835858b5961e7b7c35e3f8d520dc60e Mon Sep 17 00:00:00 2001 From: Akira Ohgaki <akiraohgaki@gmail.com> Date: Fri, 16 Jun 2017 15:57:14 +0900 Subject: [PATCH] Fix --- app/src/handlers/systemhandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/handlers/systemhandler.cpp b/app/src/handlers/systemhandler.cpp index dcc7b17..b6351d4 100644 --- a/app/src/handlers/systemhandler.cpp +++ b/app/src/handlers/systemhandler.cpp @@ -123,10 +123,10 @@ bool SystemHandler::applyFile(const QString &path, const QString &installType) c if (installType == "wallpapers") { return applyGnomeWallpaper(path); } - else if (desktop == "icons") { + else if (installType == "icons") { return applyGnomeIcon(path); } - else if (desktop == "cursors") { + else if (installType == "cursors") { return applyGnomeCursor(path); } } -- GitLab