From c26801c8e509c522db7b52a9278346c56d94a9f6 Mon Sep 17 00:00:00 2001 From: Eric Robinson Date: Fri, 5 Dec 2025 13:43:05 -0500 Subject: [PATCH] Fix stash text height --- Source/qol/stash.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/qol/stash.cpp b/Source/qol/stash.cpp index 0511675e1..b7c395508 100644 --- a/Source/qol/stash.cpp +++ b/Source/qol/stash.cpp @@ -402,10 +402,11 @@ void DrawStash(const Surface &out) const Point position = GetPanelPosition(UiPanels::Stash); const UiFlags style = UiFlags::VerticalCenter | UiFlags::ColorWhite; + const int textboxHeight = 13; - DrawString(out, StrCat(Stash.GetPage() + 1), { position + Displacement { 132, 0 }, { 57, 11 } }, + DrawString(out, StrCat(Stash.GetPage() + 1), { position + Displacement { 132, 0 }, { 57, textboxHeight } }, { .flags = UiFlags::AlignCenter | style }); - DrawString(out, FormatInteger(Stash.gold), { position + Displacement { 122, 19 }, { 107, 13 } }, + DrawString(out, FormatInteger(Stash.gold), { position + Displacement { 122, 19 }, { 107, textboxHeight } }, { .flags = UiFlags::AlignRight | style }); }