mirror of https://github.com/procxx/kepka.git
Fix reverting edited theme values.
This commit is contained in:
parent
32287a51f9
commit
a773ad7b02
|
@ -363,12 +363,15 @@ Editor::Inner::Inner(QWidget *parent, const QString &path) : TWidget(parent)
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
subscribe(Background(), [this](const BackgroundUpdate &update) {
|
subscribe(Background(), [this](const BackgroundUpdate &update) {
|
||||||
if (_applyingUpdate) return;
|
if (_applyingUpdate || !Background()->editingTheme()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (update.type == BackgroundUpdate::Type::TestingTheme) {
|
if (update.type == BackgroundUpdate::Type::TestingTheme) {
|
||||||
Revert();
|
Revert();
|
||||||
App::CallDelayed(st::slideDuration, this, [] {
|
App::CallDelayed(st::slideDuration, this, [] {
|
||||||
Ui::show(Box<InformBox>(tr::lng_theme_editor_cant_change_theme(tr::now)));
|
Ui::show(Box<InformBox>(
|
||||||
|
tr::lng_theme_editor_cant_change_theme(tr::now)));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -546,6 +546,7 @@ void CloudList::refreshColorsFromDocument(
|
||||||
colors->background = ColorsFromCurrentTheme().background;
|
colors->background = ColorsFromCurrentTheme().background;
|
||||||
}
|
}
|
||||||
element.check->setColors(*colors);
|
element.check->setColors(*colors);
|
||||||
|
setWaiting(element, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CloudList::subscribeToDownloadFinished() {
|
void CloudList::subscribeToDownloadFinished() {
|
||||||
|
|
Loading…
Reference in New Issue