diff --git a/Userland/Demos/GLTeapot/main.cpp b/Userland/Demos/GLTeapot/main.cpp index 0e8f6a163d5..e81f6974311 100644 --- a/Userland/Demos/GLTeapot/main.cpp +++ b/Userland/Demos/GLTeapot/main.cpp @@ -194,6 +194,9 @@ int main(int argc, char** argv) app->quit(); })); + auto& help_menu = menubar->add_menu("&Help"); + help_menu.add_action(GUI::CommonActions::make_about_action("GLTeapot", app_icon, window)); + window->set_menubar(move(menubar)); window->show();