From 94951e8ca912818b926710fd5d2a2ed6da900fe2 Mon Sep 17 00:00:00 2001 From: 2ro <17595647+2ro@users.noreply.github.com> Date: Mon, 6 Jul 2026 22:22:12 -0400 Subject: [PATCH] Username page: name authority on top, claim below Swap the two panels on the Username settings page so the flow reads top-to-bottom: pick your name authority first (known list + custom save, default goblin.st), then claim or release your name on it. Pure reorder of username_ui; no behavior or copy changes. --- src/gui/views/goblin/mod.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/gui/views/goblin/mod.rs b/src/gui/views/goblin/mod.rs index f35c8b64..94c88c4c 100644 --- a/src/gui/views/goblin/mod.rs +++ b/src/gui/views/goblin/mod.rs @@ -4221,10 +4221,8 @@ impl GoblinWalletView { .auto_shrink([false; 2]) .scroll_bar_visibility(egui::scroll_area::ScrollBarVisibility::AlwaysHidden) .show(ui, |ui| { - // Claim / release + the owned-name display. - self.claim_ui(ui, wallet, cb); - - ui.add_space(18.0); + // Name authority first: pick where your name lives, then claim + // it on that authority below. w::kicker(ui, &t!("goblin.username.authority")); ui.add_space(8.0); ui.label( @@ -4371,6 +4369,10 @@ impl GoblinWalletView { } } } + + ui.add_space(18.0); + // Claim / release + the owned-name display. + self.claim_ui(ui, wallet, cb); ui.add_space(16.0); }); }