From e6796d1458b8a48357ac639a9a9f05d84c2ca207 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sun, 10 Dec 2023 22:46:34 +0100 Subject: [PATCH] fix: Hex editor footer taking up way too much space --- plugins/builtin/source/ui/hex_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/builtin/source/ui/hex_editor.cpp b/plugins/builtin/source/ui/hex_editor.cpp index b8f14803e..023173953 100644 --- a/plugins/builtin/source/ui/hex_editor.cpp +++ b/plugins/builtin/source/ui/hex_editor.cpp @@ -923,7 +923,7 @@ namespace hex::plugin::builtin::ui { this->drawEditor(tableSize); if (tableSize.y > 0) - this->drawFooter(tableSize); + this->drawFooter(footerSize); this->m_selectionChanged = false; }