mirror of https://github.com/procxx/kepka.git
Strip editor information from palette.
This commit is contained in:
parent
2ab2eed633
commit
3d78c637a2
|
@ -366,6 +366,19 @@ QByteArray ReplaceValueInPaletteContent(
|
||||||
return result;
|
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)
|
Editor::Inner::Inner(QWidget *parent, const QString &path) : TWidget(parent)
|
||||||
, _path(path)
|
, _path(path)
|
||||||
, _existingRows(this, EditorBlock::Type::Existing, &_context)
|
, _existingRows(this, EditorBlock::Type::Existing, &_context)
|
||||||
|
|
|
@ -39,6 +39,7 @@ struct ParsedTheme {
|
||||||
const QByteArray &value);
|
const QByteArray &value);
|
||||||
[[nodiscard]] QByteArray WriteCloudToText(const Data::CloudTheme &cloud);
|
[[nodiscard]] QByteArray WriteCloudToText(const Data::CloudTheme &cloud);
|
||||||
[[nodiscard]] Data::CloudTheme ReadCloudFromText(const QByteArray &text);
|
[[nodiscard]] Data::CloudTheme ReadCloudFromText(const QByteArray &text);
|
||||||
|
[[nodisacrd]] QByteArray StripCloudTextFields(const QByteArray &text);
|
||||||
|
|
||||||
class Editor : public TWidget {
|
class Editor : public TWidget {
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -824,7 +824,7 @@ void SaveThemeBox(
|
||||||
|| originalParsed.background.isEmpty();
|
|| originalParsed.background.isEmpty();
|
||||||
|
|
||||||
auto parsed = ParsedTheme();
|
auto parsed = ParsedTheme();
|
||||||
parsed.palette = palette;
|
parsed.palette = StripCloudTextFields(palette);
|
||||||
parsed.isPng = false;
|
parsed.isPng = false;
|
||||||
if (changed) {
|
if (changed) {
|
||||||
QBuffer buffer(&parsed.background);
|
QBuffer buffer(&parsed.background);
|
||||||
|
|
Loading…
Reference in New Issue