Strip editor information from palette.

This commit is contained in:
John Preston 2019-09-08 21:21:54 +03:00
parent 2ab2eed633
commit 3d78c637a2
3 changed files with 15 additions and 1 deletions

View File

@ -366,6 +366,19 @@ QByteArray ReplaceValueInPaletteContent(
return result;
}
QByteArray StripCloudTextFields(const QByteArray &text) {
const auto firstValue = text.indexOf(": #");
auto start = 0;
while (true) {
const auto index = text.indexOf(kCloudInTextEnd, start);
if (index < 0 || index > firstValue) {
break;
}
start = index + kCloudInTextEnd.size();
}
return (start > 0) ? text.mid(start) : text;
}
Editor::Inner::Inner(QWidget *parent, const QString &path) : TWidget(parent)
, _path(path)
, _existingRows(this, EditorBlock::Type::Existing, &_context)

View File

@ -39,6 +39,7 @@ struct ParsedTheme {
const QByteArray &value);
[[nodiscard]] QByteArray WriteCloudToText(const Data::CloudTheme &cloud);
[[nodiscard]] Data::CloudTheme ReadCloudFromText(const QByteArray &text);
[[nodisacrd]] QByteArray StripCloudTextFields(const QByteArray &text);
class Editor : public TWidget {
public:

View File

@ -824,7 +824,7 @@ void SaveThemeBox(
|| originalParsed.background.isEmpty();
auto parsed = ParsedTheme();
parsed.palette = palette;
parsed.palette = StripCloudTextFields(palette);
parsed.isPng = false;
if (changed) {
QBuffer buffer(&parsed.background);