From 2c753b5c1622afa662a4f4334dd947667f37a803 Mon Sep 17 00:00:00 2001 From: "Pierre-Loup A. Griffais" Date: Sat, 6 Jun 2020 15:31:34 -0700 Subject: Fix formatting of back-to-back not shown icons. Otherwise looks like this: Icon (48 x 48): (not shown) Icon (64 x 64): (not shown) Icon (128 x 128): (not shown) --- xprop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xprop.c b/xprop.c index f13660f..15c296d 100644 --- a/xprop.c +++ b/xprop.c @@ -813,7 +813,7 @@ Format_Icons (const unsigned long *icon, int len) if ((display_width + 8) > term_width || height > 144) { - tail += sprintf (tail, "\t(not shown)"); + tail += sprintf (tail, "\t(not shown)\n"); icon += width * height; continue; } -- cgit v1.2.3