controlcenter: corrected missing config.save() on panes
This commit is contained in:
parent
59c906d650
commit
d751b68bdf
2 changed files with 7 additions and 1 deletions
|
|
@ -66,8 +66,11 @@ RowLayout {
|
|||
}
|
||||
}
|
||||
|
||||
// Update Config to trigger save
|
||||
// Update Config
|
||||
Config.launcher.hiddenApps = hiddenApps;
|
||||
|
||||
// Persist changes to disk
|
||||
Config.save();
|
||||
}
|
||||
|
||||
onSelectedAppChanged: {
|
||||
|
|
|
|||
|
|
@ -111,6 +111,9 @@ RowLayout {
|
|||
});
|
||||
}
|
||||
Config.bar.entries = entries;
|
||||
|
||||
// Persist changes to disk
|
||||
Config.save();
|
||||
}
|
||||
|
||||
ListModel {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue