feat: replace +1024 footer button with +10h +100h +1000h granular grow

- Three hex-sized grow buttons: +10h (16B), +100h (256B), +1000h (4096B)
- Single-space gaps between buttons for tighter layout
- All click, hover, cursor, and pill styling updated
- Enum +10 button unchanged and correctly disambiguated

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
IChooseYou
2026-03-08 16:38:03 -06:00
parent 25afbe373b
commit a21e5a07a8
2 changed files with 64 additions and 30 deletions

View File

@@ -168,7 +168,7 @@ QString fmtStructFooter(const Node& node, int depth, int /*totalSize*/) {
if (node.resolvedClassKeyword() == QStringLiteral("enum"))
footer += QStringLiteral(" +10");
else
footer += QStringLiteral(" +1024 Trim");
footer += QStringLiteral(" +10h +100h +1000h Trim");
return footer;
}