From d8fb62255fd0d4995477cbe6c20d2c99d70cf696 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Wed, 28 Feb 2024 09:33:36 -0700 Subject: [PATCH] Remove about heading --- i18n/en/cosmic_files.ftl | 1 - src/app.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/i18n/en/cosmic_files.ftl b/i18n/en/cosmic_files.ftl index 4af4109..8af659c 100644 --- a/i18n/en/cosmic_files.ftl +++ b/i18n/en/cosmic_files.ftl @@ -39,7 +39,6 @@ size = Size # Context Pages ## About -about = About git-description = Git commit {$hash} on {$date} ## Operations diff --git a/src/app.rs b/src/app.rs index 41a9146..49b6ea6 100644 --- a/src/app.rs +++ b/src/app.rs @@ -150,7 +150,7 @@ pub enum ContextPage { impl ContextPage { fn title(&self) -> String { match self { - Self::About => fl!("about"), + Self::About => String::new(), Self::Operations => fl!("operations"), Self::Properties => fl!("properties"), Self::Settings => fl!("settings"),