Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add two separators to the multiplayer menu #1261

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions client/menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -926,6 +926,7 @@ void mr_menu::setup_menus()
act = multiplayer_menu->addAction(_("Clear Orders"));
act->setShortcut(QKeySequence(tr("ctrl+shift+c")));
connect(act, &QAction::triggered, this, &mr_menu::slot_orders_clear);
multiplayer_menu->addSeparator();
act = multiplayer_menu->addAction(_("Add all cities to trade planning"));
connect(act, &QAction::triggered, this, &mr_menu::slot_trade_add_all);
act = multiplayer_menu->addAction(_("Calculate trade planning"));
Expand All @@ -939,6 +940,7 @@ void mr_menu::setup_menus()
menu_list.insert(AUTOTRADEROUTE, act);
connect(act, &QAction::triggered, this, &mr_menu::slot_autocaravan);
act->setShortcut(QKeySequence(tr("ctrl+j")));
multiplayer_menu->addSeparator();
act = multiplayer_menu->addAction(_("Set/Unset rally point"));
act->setShortcut(QKeySequence(tr("shift+s")));
connect(act, &QAction::triggered, this, &mr_menu::slot_rally);
Expand Down