diff --git a/notifications_client.py b/notifications_client.py index e6225d6d1..1eba8d3f1 100644 --- a/notifications_client.py +++ b/notifications_client.py @@ -425,7 +425,7 @@ def _showLocalBox(notifyJson: {}, boxName: str, notificationIcons += ' ❤' titleStr = '\33[7m' + boxName.upper() + '\33[0m' if notificationIcons: - while len(titleStr) < 87 - len(notificationIcons): + while len(titleStr) < 99 - len(notificationIcons): titleStr += ' ' titleStr += notificationIcons print(indent + titleStr + '\n')