Gbridge: Limit title length

Some group chats like in whatsapp have really long title as they consist of group chat name + person name
pull/189/head
Michael Werner 2020-04-02 21:14:05 +02:00
parent 8468899a80
commit 792e79c3a8
1 changed files with 2 additions and 1 deletions

View File

@ -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