From 38d22923b40b3b62c830384a0ff8aa0a61f156be Mon Sep 17 00:00:00 2001 From: Antonis Tsiapaliokas Date: Mon, 11 Jun 2012 03:25:41 +0300 Subject: [PATCH] Plasmapkg -t can now detect the correct serviceType --- tools/plasmapkg/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/plasmapkg/main.cpp b/tools/plasmapkg/main.cpp index 75d093acc..3dc061cf3 100644 --- a/tools/plasmapkg/main.cpp +++ b/tools/plasmapkg/main.cpp @@ -288,6 +288,8 @@ int main(int argc, char **argv) type = "kwineffect"; } else if (serviceType == "KWin/Script") { type = "kwinscript"; + } else if (serviceType == "Plasma/LayoutTemplate") { + type = "layout-template"; } else { type = serviceType; kDebug() << "fallthrough type is" << serviceType;