diff options
author | bd <bdunahu@operationnull.com> | 2025-04-26 14:41:02 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-26 14:41:02 -0400 |
commit | b32bc409c18ceb4cd8147f11021e2c4b2746184b (patch) | |
tree | 588f2a5955e7c122f1df430280925034c910c42d /gui/digitlabelhelper.h | |
parent | 1c174cc103cb1b00befed6e52b40bb3e76cc7797 (diff) |
right-align colum headers on table objects
Diffstat (limited to 'gui/digitlabelhelper.h')
-rw-r--r-- | gui/digitlabelhelper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/digitlabelhelper.h b/gui/digitlabelhelper.h index 715089a..26e4637 100644 --- a/gui/digitlabelhelper.h +++ b/gui/digitlabelhelper.h @@ -36,7 +36,7 @@ class DigitLabelHelper { if (is_cleared) return QString(); - return is_hex ? QString::asprintf("%04X", value) + return is_hex ? QString::asprintf("%X", value) : QString::number(value); } }; |