diff options
Diffstat (limited to 'desktop/Module.qml')
| -rw-r--r-- | desktop/Module.qml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/desktop/Module.qml b/desktop/Module.qml index 645c736..eabe434 100644 --- a/desktop/Module.qml +++ b/desktop/Module.qml @@ -30,10 +30,9 @@ QtObject { // Label under the icon. Defaults to the name, capitalised. property string label: name.charAt(0).toUpperCase() + name.slice(1) - // Whether this module's background service runs while the drawer is - // closed. The drawer is closed most of the time, so this is what decides - // whether the shell is cheap to run all session. It governs the service - // only: pages are lazily loaded either way. + // Declarative metadata: whether this module's service is meant to run + // while the drawer is closed. The drawer does not read or enforce it, the + // module implements its own lifetime. Pages are lazily loaded either way. property bool alwaysActive: false // Rendered inside the tile, below the icon: a short state line. Null for |
