From 9e742e4b4a482848ec4037e4df06f45e1bbc04ef Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Tue, 21 Sep 2021 10:29:33 -0500 Subject: [PATCH] feat(@desktop/settings): set "Just @mentions" as the new default in Notifications preferences Closes #3532. --- ui/main.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ui/main.qml b/ui/main.qml index 3989578dcb..1cf18d31f5 100644 --- a/ui/main.qml +++ b/ui/main.qml @@ -62,7 +62,7 @@ StatusWindow { property var hiddenCommunityWelcomeBanners: [] property var hiddenCommunityBackUpBanners: [] property real volume: 0.2 - property int notificationSetting: Constants.notifyAllMessages + property int notificationSetting: Constants.notifyJustMentions property bool notificationSoundsEnabled: true property bool useOSNotifications: true property int notificationMessagePreviewSetting: Constants.notificationPreviewNameAndMessage @@ -138,7 +138,7 @@ StatusWindow { } } } - + Action { shortcut: "Ctrl+W" enabled: loader.item ? loader.item.currentView !== Utils.getAppSectionIndex(Constants.browser) @@ -172,7 +172,7 @@ StatusWindow { } } } - + Connections { target: singleInstance @@ -217,7 +217,7 @@ StatusWindow { } signal navigateTo(string path) - + property bool currentlyHasANotification: false function makeStatusAppActive() { @@ -251,7 +251,7 @@ StatusWindow { applicationWindow.makeStatusAppActive() } } - + MenuSeparator { }