From ffad5b17060f6491fe48516c051a404ed3381f81 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Thu, 27 May 2021 18:11:03 +0100 Subject: [PATCH] 3DFileViewer: Add separator before quit menu action --- Userland/Applications/3DFileViewer/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/3DFileViewer/main.cpp b/Userland/Applications/3DFileViewer/main.cpp index a224ccc6a0..177e181637 100644 --- a/Userland/Applications/3DFileViewer/main.cpp +++ b/Userland/Applications/3DFileViewer/main.cpp @@ -201,7 +201,7 @@ int main(int argc, char** argv) load_model(open_path.value()); })); - + file_menu.add_separator(); file_menu.add_action(GUI::CommonActions::make_quit_action([&] { app->quit(); }));