From aa7771f58f5463c3ab33f44c2eef5a471c91c0e6 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 15 Mar 2021 17:56:01 +0000 Subject: [PATCH] Position of icon --- notifications_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifications_client.py b/notifications_client.py index 5a6605dba..841cb31aa 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -425,7 +425,7 @@ def _showLocalBox(notifyJson: {}, boxName: str, notificationIcons += '❤' titleStr = boxName.upper() if notificationIcons: - while len(titleStr) < 90 - len(notificationIcons): + while len(titleStr) < 89 - len(notificationIcons): titleStr += ' ' titleStr += notificationIcons print(indent + titleStr + '\n')