summaryrefslogtreecommitdiff
path: root/gui/digitlabelhelper.h
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-04-26 14:41:02 -0400
committerbd <bdunahu@operationnull.com>2025-04-26 14:41:02 -0400
commitb32bc409c18ceb4cd8147f11021e2c4b2746184b (patch)
tree588f2a5955e7c122f1df430280925034c910c42d /gui/digitlabelhelper.h
parent1c174cc103cb1b00befed6e52b40bb3e76cc7797 (diff)
right-align colum headers on table objects
Diffstat (limited to 'gui/digitlabelhelper.h')
-rw-r--r--gui/digitlabelhelper.h2
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);
}
};