Bläddra i källkod

PDFViewer: Add separator before quit menu action

Linus Groh 4 år sedan
förälder
incheckning
cde5107f3d
1 ändrade filer med 1 tillägg och 0 borttagningar
  1. 1 0
      Userland/Applications/PDFViewer/PDFViewerWidget.cpp

+ 1 - 0
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();
     }));