Remove the number from the Back button

This commit is contained in:
Mike Dilger 2023-01-17 07:11:41 +13:00
parent 72195bda1b
commit 8e6028c36a
2 changed files with 1 additions and 4 deletions

View File

@ -575,8 +575,6 @@ fn render_post_actual(
});
});
ui.add_space(4.0);
if is_main_event {
thin_red_separator(ui);
}

View File

@ -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 {