diff options
Diffstat (limited to 'gui')
-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 4d45c68..744bf0f 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("%X", value) : QString::number(value); + return is_hex ? QString::asprintf("%08X", value) : QString::number(value); } }; |