From 567c054fe6675d4e102443fce870e8f2c0512f7b Mon Sep 17 00:00:00 2001 From: 2ro <17595647+2ro@users.noreply.github.com> Date: Tue, 7 Jul 2026 12:28:31 -0400 Subject: [PATCH] goblin: drop the Activity top-right self avatar (owner veto) Activity returns to a plain title with no top-right avatar; the flat yellow Grin-mark self avatar stays on the Home and Pay headers only. --- src/gui/views/goblin/mod.rs | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/src/gui/views/goblin/mod.rs b/src/gui/views/goblin/mod.rs index fdd710e9..efcf0231 100644 --- a/src/gui/views/goblin/mod.rs +++ b/src/gui/views/goblin/mod.rs @@ -2754,20 +2754,11 @@ impl GoblinWalletView { fn activity_ui(&mut self, ui: &mut egui::Ui, wallet: &Wallet, cb: &dyn PlatformCallbacks) { ui.add_space(8.0); - ui.horizontal(|ui| { - ui.label( - RichText::new(t!("goblin.activity.title")) - .font(FontId::new(28.0, fonts::bold())) - .color(theme::tokens().text), - ); - // The user's own avatar (opens settings): the flat yellow + Grin mark - // tile, matching the Home and Pay headers. - ui.with_layout(Layout::right_to_left(Align::Center), |ui| { - if w::avatar_self(ui, 40.0).clicked() { - self.tab = Tab::Me; - } - }); - }); + ui.label( + RichText::new(t!("goblin.activity.title")) + .font(FontId::new(28.0, fonts::bold())) + .color(theme::tokens().text), + ); ui.add_space(12.0); // Recent contacts strip (payment-app-style row above the feed).