summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre-Loup A. Griffais <git@plagman.net>2020-06-06 15:31:34 -0700
committerPierre-Loup A. Griffais <git@plagman.net>2020-11-01 13:45:27 -0800
commit2c753b5c1622afa662a4f4334dd947667f37a803 (patch)
treebb7b58482dc88fbec70fcaa9726b665e1916e6cc
parentd41b28bfa8f5bf5155082167fb004e3c709b52ae (diff)
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)
-rw-r--r--xprop.c2
1 files changed, 1 insertions, 1 deletions
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;
}