diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-16 13:15:08 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-16 13:15:08 -0500 |
| commit | d751b68bdfcf1113fcab8da0d99748772feaebcd (patch) | |
| tree | aaf522230a94f1a711a26fe5b1d799e2a9f12c2e /modules | |
| parent | controlcenter: appearance pane async loader (diff) | |
| download | caelestia-shell-d751b68bdfcf1113fcab8da0d99748772feaebcd.tar.gz caelestia-shell-d751b68bdfcf1113fcab8da0d99748772feaebcd.tar.bz2 caelestia-shell-d751b68bdfcf1113fcab8da0d99748772feaebcd.zip | |
controlcenter: corrected missing config.save() on panes
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/controlcenter/launcher/LauncherPane.qml | 5 | ||||
| -rw-r--r-- | modules/controlcenter/taskbar/TaskbarPane.qml | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/modules/controlcenter/launcher/LauncherPane.qml b/modules/controlcenter/launcher/LauncherPane.qml index a7e122e..0cb223b 100644 --- a/modules/controlcenter/launcher/LauncherPane.qml +++ b/modules/controlcenter/launcher/LauncherPane.qml @@ -66,8 +66,11 @@ RowLayout { } } - // Update Config to trigger save + // Update Config Config.launcher.hiddenApps = hiddenApps; + + // Persist changes to disk + Config.save(); } onSelectedAppChanged: { diff --git a/modules/controlcenter/taskbar/TaskbarPane.qml b/modules/controlcenter/taskbar/TaskbarPane.qml index 6d9761b..8d0e5a0 100644 --- a/modules/controlcenter/taskbar/TaskbarPane.qml +++ b/modules/controlcenter/taskbar/TaskbarPane.qml @@ -111,6 +111,9 @@ RowLayout { }); } Config.bar.entries = entries; + + // Persist changes to disk + Config.save(); } ListModel { |