diff options
author | Pierre-Loup A. Griffais <git@plagman.net> | 2020-06-06 15:31:34 -0700 |
---|---|---|
committer | Pierre-Loup A. Griffais <git@plagman.net> | 2020-11-01 13:45:27 -0800 |
commit | 2c753b5c1622afa662a4f4334dd947667f37a803 (patch) | |
tree | bb7b58482dc88fbec70fcaa9726b665e1916e6cc | |
parent | d41b28bfa8f5bf5155082167fb004e3c709b52ae (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |