diff options
| author | Andrew Branson <andrew.branson@jolla.com> | 2026-02-19 19:10:37 +0100 |
|---|---|---|
| committer | Andrew Branson <andrew.branson@jolla.com> | 2026-02-19 19:10:37 +0100 |
| commit | 2100e260e58e12cef347ecf17e3aad9422d22e86 (patch) | |
| tree | 89a5a6a8fb827ed8e59713290ddc14bca42853e8 /settings | |
| parent | 459245e022e67c9e25b7aae9e145e89b66a50fac (diff) | |
Notif tweak
Diffstat (limited to 'settings')
| -rw-r--r-- | settings/accounts/ui/MastodonSettingsDisplay.qml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/settings/accounts/ui/MastodonSettingsDisplay.qml b/settings/accounts/ui/MastodonSettingsDisplay.qml index 082bf04..ece9a41 100644 --- a/settings/accounts/ui/MastodonSettingsDisplay.qml +++ b/settings/accounts/ui/MastodonSettingsDisplay.qml @@ -106,7 +106,11 @@ StandardAccountSettingsDisplay { id: syncServicesRepeater TextSwitch { checked: model.enabled - text: model.displayName + text: model.serviceName === "mastodon-microblog" + ? "Posts" + : (model.serviceName === "mastodon-notifications" + ? "Notifications" + : model.displayName) description: model.serviceName === "mastodon-microblog" ? "Show Mastodon posts in the Events view." : (model.serviceName === "mastodon-notifications" |
