mirror of https://github.com/procxx/kepka.git
Fix deleting theme from the list.
This commit is contained in:
parent
8fd17e2e8f
commit
048658f838
|
@ -560,11 +560,11 @@ void CloudList::showMenu(Element &element) {
|
||||||
_contextMenu->addAction(tr::lng_theme_delete(tr::now), [=] {
|
_contextMenu->addAction(tr::lng_theme_delete(tr::now), [=] {
|
||||||
const auto box = std::make_shared<QPointer<BoxContent>>();
|
const auto box = std::make_shared<QPointer<BoxContent>>();
|
||||||
const auto remove = [=] {
|
const auto remove = [=] {
|
||||||
|
if (*box) {
|
||||||
|
(*box)->closeBox();
|
||||||
|
}
|
||||||
if (Background()->themeObject().cloud.id == id
|
if (Background()->themeObject().cloud.id == id
|
||||||
|| id == kFakeCloudThemeId) {
|
|| id == kFakeCloudThemeId) {
|
||||||
if (*box) {
|
|
||||||
(*box)->closeBox();
|
|
||||||
}
|
|
||||||
if (Background()->editingTheme().has_value()) {
|
if (Background()->editingTheme().has_value()) {
|
||||||
Background()->clearEditingTheme(
|
Background()->clearEditingTheme(
|
||||||
ClearEditing::KeepChanges);
|
ClearEditing::KeepChanges);
|
||||||
|
|
Loading…
Reference in New Issue