1
0
forked from GRIN/grim

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.
This commit is contained in:
2ro
2026-07-06 22:22:12 -04:00
parent f72a9718a3
commit 94951e8ca9
+6 -4
View File
@@ -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);
});
}