PluginSystem: simplified IPC calls creation

This commit is contained in:
ItsLemmy
2025-12-01 20:44:26 -05:00
parent 8cf84c5890
commit 34f84afcd1
3 changed files with 82 additions and 102 deletions
+10 -1
View File
@@ -117,8 +117,17 @@ ShellRoot {
LockScreen {}
// IPCService is treated as a service but it's actually an Item that needs to exists in the shell.
// IPCService is treated as a service but it must be in graphics scene.
IPCService {}
// Container for plugins Main.qml instances (must be in graphics scene)
Item {
id: pluginContainer
visible: false
Component.onCompleted: {
PluginService.pluginContainer = pluginContainer;
}
}
}
}