From cde5107f3dcba33a973ec94fc682186a11122f10 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Thu, 27 May 2021 18:09:37 +0100 Subject: [PATCH] PDFViewer: Add separator before quit menu action --- Userland/Applications/PDFViewer/PDFViewerWidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Applications/PDFViewer/PDFViewerWidget.cpp b/Userland/Applications/PDFViewer/PDFViewerWidget.cpp index 0cc705a43a..1e7aecb747 100644 --- a/Userland/Applications/PDFViewer/PDFViewerWidget.cpp +++ b/Userland/Applications/PDFViewer/PDFViewerWidget.cpp @@ -39,6 +39,7 @@ void PDFViewerWidget::initialize_menubar(GUI::Menubar& menubar) if (open_path.has_value()) open_file(open_path.value()); })); + file_menu.add_separator(); file_menu.add_action(GUI::CommonActions::make_quit_action([](auto&) { GUI::Application::the()->quit(); }));