Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamila <hello@camila.codes>2021-04-26 21:40:38 +0300
committerCamila (Rebase PR Action) <hello@camila.codes>2021-05-25 09:55:52 +0300
commitf7e9e31bc90c41320d5e1a2fe40d99261c1b8e71 (patch)
tree6cb4921580b895c8c0f496326f95150ff559c474 /src/gui/tray/Window.qml
parent820e97cd9b381808b9c927f917e710637009befe (diff)
Rename isDesktopNotificationsAllowed property to desktopNotificationsAllowed.
- User !== instead of !=. - Fix code style. Signed-off-by: Camila <hello@camila.codes>
Diffstat (limited to 'src/gui/tray/Window.qml')
-rw-r--r--src/gui/tray/Window.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/tray/Window.qml b/src/gui/tray/Window.qml
index df2aa83a1..b77b3762d 100644
--- a/src/gui/tray/Window.qml
+++ b/src/gui/tray/Window.qml
@@ -381,7 +381,7 @@ Window {
sourceSize.height: Style.accountAvatarStateIndicatorSize
Accessible.role: Accessible.Indicator
- Accessible.name: UserModel.isDesktopNotificationsAllowed ? qsTr("Current user status is online") : qsTr("Current user status is do not disturb")
+ Accessible.name: UserModel.desktopNotificationsAllowed ? qsTr("Current user status is online") : qsTr("Current user status is do not disturb")
}
}