1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:38:11 +00:00

VisualBuilder: Remove empty "Edit" menu

There was nothing in there anyway. We can add it back when we have some
edit actions :^)
This commit is contained in:
Andreas Kling 2019-09-01 13:25:54 +02:00
parent 353bf57378
commit 16628d0f8f

View file

@ -45,9 +45,6 @@ int main(int argc, char** argv)
}));
menubar->add_menu(move(file_menu));
auto edit_menu = make<GMenu>("Edit");
menubar->add_menu(move(edit_menu));
auto help_menu = make<GMenu>("Help");
help_menu->add_action(GAction::create("About", [](const GAction&) {
dbgprintf("FIXME: Implement Help/About\n");