From 776cbe4d3096ff0b2278682d1149e01b581c07b8 Mon Sep 17 00:00:00 2001 From: Albert S Date: Sun, 4 Oct 2020 21:36:40 +0200 Subject: [PATCH] EntryProvider: saveUserEntry(): Add missing fields --- entryprovider.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/entryprovider.cpp b/entryprovider.cpp index 6071ab1..cd26305 100644 --- a/entryprovider.cpp +++ b/entryprovider.cpp @@ -298,6 +298,8 @@ void EntryProvider::saveUserEntry(const EntryConfig &config) } outStream << "row" << " " << config.row << endl; outStream << "col" << " " << config.col << endl; + outStream << "hidden" << " " << config.hidden << endl; + outStream << "key" << " " << config.key << endl; if(config.type == EntryType::USER) { if(!config.name.isEmpty()) @@ -312,6 +314,10 @@ void EntryProvider::saveUserEntry(const EntryConfig &config) { outStream << "icon" << " " << config.iconPath << endl; } + if(!config.arguments.empty()) + { + outStream << "arguments" << " " << config.arguments.join(' ') << endl; + } } outStream.flush();