From a492c36aecbce599f75f6fd4711b61f5d8e8ecd3 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Thu, 28 Aug 2025 21:31:33 -0500 Subject: [PATCH] reposition Resume --- src/game/boe.actions.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/game/boe.actions.cpp b/src/game/boe.actions.cpp index d73a0e615..b02928045 100644 --- a/src/game/boe.actions.cpp +++ b/src/game/boe.actions.cpp @@ -2818,6 +2818,8 @@ void run_quick_menu() { cButtonPanel panel(choices, handlers, "Quick Menu"); panel->getControl("cancel").setText("Resume"); + // Bump Resume left because it looks weird without an Okay button + panel->getControl("cancel").relocateRelative({160, 0}, &panel->getControl("cancel"), POS_REL_NEG, POS_CONT_PLUS); panel->getControl("done").hide(); dynamic_cast(panel->getControl("pic")).setPict(23,PIC_DLOG); panel.show();