From 570f293399b57c25e2915f866b4f6096e96c42aa Mon Sep 17 00:00:00 2001 From: Magnus Hauge Bakke Date: Wed, 6 Apr 2016 09:15:21 +0200 Subject: [PATCH] Update app unread badge to dot instead of punctuation --- js/notifications.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/notifications.js b/js/notifications.js index f5e561b..2f9752f 100644 --- a/js/notifications.js +++ b/js/notifications.js @@ -155,7 +155,7 @@ weechat.factory('notifications', ['$rootScope', '$log', 'models', 'settings', fu textColor: '#ff0' }); // Set app badge to "." when only unread and no notifications - updateBadge("."); + updateBadge("•"); } } };