Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
UI|Task Bar: Reordered menu items under "Games"
Unload is analogous to Quit, so both are at the end of their groups.
  • Loading branch information
skyjake committed Aug 24, 2015
1 parent 460ac2a commit 7961c39
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions doomsday/apps/client/src/ui/widgets/taskbarwidget.cpp
Expand Up @@ -66,10 +66,10 @@ enum MenuItemPositions
{
// DE menu:
POS_GAMES = 1,
POS_UNLOAD = 2,
POS_GAMES_SEPARATOR = 3,
POS_MULTIPLAYER = 4,
POS_CONNECT = 5,
POS_MULTIPLAYER = 2,
POS_CONNECT = 3,
POS_GAMES_SEPARATOR = 4,
POS_UNLOAD = 5,
POS_IWAD_FOLDER = 8,

// Config menu:
Expand Down Expand Up @@ -448,11 +448,11 @@ TaskBarWidget::TaskBarWidget() : GuiWidget("taskbar"), d(new Instance(this))
d->mainMenu->items()
<< new ui::Item(ui::Item::Separator, tr("Games"))
<< new ui::ActionItem(tr("Switch Game..."), new SignalAction(this, SLOT(switchGame())))
<< unloadMenu // hidden with null-game
<< new ui::Item(ui::Item::Separator)
<< new ui::ActionItem(tr("Multiplayer Games..."), new SignalAction(this, SLOT(showMultiplayer())))
<< new ui::ActionItem(tr("Connect to Server..."), new SignalAction(this, SLOT(connectToServerManually())))
<< new ui::Item(ui::Item::Separator)
<< unloadMenu // hidden with null-game
<< new ui::Item(ui::Item::Separator)
<< new ui::Item(ui::Item::Separator, tr("Application"))
<< new ui::ActionItem(tr("IWAD Folder..."), new SignalAction(this, SLOT(chooseIWADFolder())))
<< new ui::ActionItem(tr("Check for Updates..."), new CommandAction("updateandnotify"))
Expand Down

0 comments on commit 7961c39

Please sign in to comment.