diff options
author | bd <bdunahu@operationnull.com> | 2025-04-26 14:57:56 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-04-26 14:57:56 -0400 |
commit | ae2aaecfc1b2402a55e99cf674eff7b6175b0b6d (patch) | |
tree | 651c14de4eb0467d898810bdb1e136f2e5089ded /gui/digitlabelhelper.h | |
parent | b32bc409c18ceb4cd8147f11021e2c4b2746184b (diff) |
Basic hex formatting on row headers for storage tables
Diffstat (limited to 'gui/digitlabelhelper.h')
-rw-r--r-- | gui/digitlabelhelper.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gui/digitlabelhelper.h b/gui/digitlabelhelper.h index 26e4637..4d45c68 100644 --- a/gui/digitlabelhelper.h +++ b/gui/digitlabelhelper.h @@ -36,8 +36,7 @@ class DigitLabelHelper { if (is_cleared) return QString(); - return is_hex ? QString::asprintf("%X", value) - : QString::number(value); + return is_hex ? QString::asprintf("%X", value) : QString::number(value); } }; |