diff options
| author | Sven Fischer <sven@leiderfischer.de> | 2025-12-20 22:20:23 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-21 08:20:23 +1100 |
| commit | 8d63cd41b6d521bf64b50c9a94482b77a3e83170 (patch) | |
| tree | 5fb88d1dcf5c0e792a55a77adaf76d76a24dff2b /config/NotifsConfig.qml | |
| parent | [CI] chore: update flake (diff) | |
| download | caelestia-shell-8d63cd41b6d521bf64b50c9a94482b77a3e83170.tar.gz caelestia-shell-8d63cd41b6d521bf64b50c9a94482b77a3e83170.tar.bz2 caelestia-shell-8d63cd41b6d521bf64b50c9a94482b77a3e83170.zip | |
feat: add openExpanded notif config option (#993)
If set in the configuration, the notifications are opened in the
expanded state, displaying the full notification text.
Diffstat (limited to 'config/NotifsConfig.qml')
| -rw-r--r-- | config/NotifsConfig.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/NotifsConfig.qml b/config/NotifsConfig.qml index 25d8680..fa2db49 100644 --- a/config/NotifsConfig.qml +++ b/config/NotifsConfig.qml @@ -7,6 +7,7 @@ JsonObject { property int expandThreshold: 20 property bool actionOnClick: false property int groupPreviewNum: 3 + property bool openExpanded: false // Show the notifichation in expanded state when opening property Sizes sizes: Sizes {} component Sizes: JsonObject { |