From f3d52442ab3e6ee389d7ceea41d4612e282fac66 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 15 Mar 2021 18:21:04 +0000 Subject: [PATCH] Spacing between notification icons --- notifications_client.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/notifications_client.py b/notifications_client.py index 841cb31aa..fbc854508 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -411,18 +411,18 @@ def _showLocalBox(notifyJson: {}, boxName: str, notificationIcons = '' if notifyJson: if notifyJson.get('followRequests'): - notificationIcons += '👤' + notificationIcons += ' 👤' if notifyJson.get('dm'): - notificationIcons += '📩' + notificationIcons += ' 📩' if notifyJson.get('reply'): - notificationIcons += '📨' + notificationIcons += ' 📨' if notifyJson.get('calendar'): - notificationIcons += '📅' + notificationIcons += ' 📅' if notifyJson.get('share'): - notificationIcons += '🤝' + notificationIcons += ' 🤝' if notifyJson.get('likedBy'): if '##sent##' not in notifyJson['likedBy']: - notificationIcons += '❤' + notificationIcons += ' ❤' titleStr = boxName.upper() if notificationIcons: while len(titleStr) < 89 - len(notificationIcons):