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
Notes: sideshowbarker 2024-07-19 12:25:45 +09:00

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");