From 792e79c3a8156b3030f8fda6715476331acb2eb5 Mon Sep 17 00:00:00 2001 From: Michael Werner Date: Thu, 2 Apr 2020 21:14:05 +0200 Subject: [PATCH] Gbridge: Limit title length Some group chats like in whatsapp have really long title as they consist of group chat name + person name --- apps/gbridge/widget.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/gbridge/widget.js b/apps/gbridge/widget.js index 655c7fa4c..e167c9a50 100644 --- a/apps/gbridge/widget.js +++ b/apps/gbridge/widget.js @@ -58,7 +58,8 @@ g.drawString(j.src,x,y+7); g.setColor("#ffffff"); g.setFont("6x8",2); - g.drawString(j.title,x,y+25); + if (j.title === undefined) g.drawString(j.title,x,y+25); + else g.drawString(j.title.slice(0,17),x,y+25); g.setFont("6x8",1); g.setColor("#ffffff"); // split text up a word boundaries