diff --git a/src/ui/feed.rs b/src/ui/feed.rs index 1614738f..3cb5facf 100644 --- a/src/ui/feed.rs +++ b/src/ui/feed.rs @@ -575,8 +575,6 @@ fn render_post_actual( }); }); - ui.add_space(4.0); - if is_main_event { thin_red_separator(ui); } diff --git a/src/ui/mod.rs b/src/ui/mod.rs index d4156604..25457bd0 100644 --- a/src/ui/mod.rs +++ b/src/ui/mod.rs @@ -254,8 +254,7 @@ impl eframe::App for GossipUi { egui::TopBottomPanel::top("menu").show(ctx, |ui| { ui.horizontal(|ui| { - let len = self.history.len(); - let back_label_text = RichText::new(format!("< Back {}", len)); + let back_label_text = RichText::new("‹ Back"); let label = if self.history.is_empty() { Label::new(back_label_text.weak()) } else {