From 68d72fa853381b8ab3b18e7be8fa8172380c71bb Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 11 Jun 2026 23:41:38 -0400 Subject: [PATCH] Build 24: equal-size buttons in the release-username confirm gate "Keep it" used big_action_on_card (56px / 17px) while "Release it" used big_action_on_card_ink (44px / 15px), so the two confirm buttons were visibly different sizes. Both now render with big_action_on_card_ink at the intended 44px (matching the layout's scope), differing only in text color. --- src/gui/views/goblin/mod.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gui/views/goblin/mod.rs b/src/gui/views/goblin/mod.rs index 0b8a7884..ea4fef3c 100644 --- a/src/gui/views/goblin/mod.rs +++ b/src/gui/views/goblin/mod.rs @@ -2452,7 +2452,9 @@ impl GoblinWalletView { Vec2::new(half, 44.0), )), |ui| { - if w::big_action_on_card(ui, "Keep it").clicked() { + if w::big_action_on_card_ink(ui, "Keep it", t.surface_text) + .clicked() + { claim.confirm_release = false; } },