From 712697e0c24e53d32ef6087c7f2b4e24fdf8a57c Mon Sep 17 00:00:00 2001 From: "Lubomir I. Ivanov" Date: Thu, 23 Nov 2017 18:23:36 +0200 Subject: printing: detect a 'statistics' template when editing Prefix the path for 'statistics' templates when detecting if a template is read-only. Import / Export for statistic templates is not supported. So the user has to manually copy and chown a '/statistics' templates. Signed-off-by: Lubomir I. Ivanov --- desktop-widgets/printoptions.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'desktop-widgets') diff --git a/desktop-widgets/printoptions.cpp b/desktop-widgets/printoptions.cpp index 6e45bc5e1..cebb073a3 100644 --- a/desktop-widgets/printoptions.cpp +++ b/desktop-widgets/printoptions.cpp @@ -124,7 +124,8 @@ void PrintOptions::on_printTemplate_currentIndexChanged(int index) void PrintOptions::on_editButton_clicked() { QString templateName = getSelectedTemplate(); - QFile f(getPrintingTemplatePathUser() + QDir::separator() + templateName); + QString prefix = (printOptions->type == print_options::STATISTICS) ? "statistics/" : ""; + QFile f(getPrintingTemplatePathUser() + QDir::separator() + prefix + templateName); if (!f.open(QFile::ReadWrite | QFile::Text)) { QMessageBox msgBox(this); msgBox.setWindowTitle(tr("Read-only template!")); -- cgit v1.2.3-70-g09d2