1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00

shell: dmsCoreApp updates

This commit is contained in:
purian23
2026-01-05 20:31:06 -05:00
parent ab071e12aa
commit 0076c45496
6 changed files with 138 additions and 13 deletions

View File

@@ -606,6 +606,10 @@ Item {
active: false
Component.onCompleted: {
PopoutService.processListModalLoader = processListModalLoader;
}
ProcessListModal {
id: processListModal
@@ -642,6 +646,17 @@ Item {
expandedWidthValue: 960
customTransparency: SettingsData.notepadTransparencyOverride
Component.onCompleted: {
PopoutService.notepadSlideouts.push(notepadSlideout);
}
Component.onDestruction: {
const index = PopoutService.notepadSlideouts.indexOf(notepadSlideout);
if (index > -1) {
PopoutService.notepadSlideouts.splice(index, 1);
}
}
content: Component {
Notepad {
onHideRequested: {