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;
|
||||
}
|
||||
|
||||
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)
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue