aboutsummaryrefslogtreecommitdiff
path: root/src/components/header.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/header.rs')
-rw-r--r--src/components/header.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/components/header.rs b/src/components/header.rs
index 6c1055b..7977a5b 100644
--- a/src/components/header.rs
+++ b/src/components/header.rs
@@ -184,6 +184,13 @@ impl Header {
zoom_section.append(Some(&tr!("command.view.zoom_out")), Some("window.zoom-out"));
main_menu.append_section(None, &zoom_section);
+ let help_section = gio::Menu::new();
+ help_section.append(
+ Some(&tr!("command.application.about")),
+ Some("window.about"),
+ );
+ main_menu.append_section(None, &help_section);
+
let prefs_section = gio::Menu::new();
prefs_section.append(
Some(&tr!("command.application.preferences")),