From a205e003c9aea598c9d1def6c53ed3b9112e0a87 Mon Sep 17 00:00:00 2001 From: Elliott Liggett Date: Sun, 22 Jan 2023 20:38:27 -0800 Subject: [PATCH] Lining up the text a little better with printHex. --- printhex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/printhex.h b/printhex.h index 57878b1..e39c1cb 100644 --- a/printhex.h +++ b/printhex.h @@ -20,7 +20,7 @@ QString inline getHex(const QByteArray &pdata) sdata.append("\n"); index.append("\n"); - QString tail = "----- End hex dump -----\n"; + QString tail = "---- End hex dump -----\n"; return head + sdata + index + tail; }