Skip to content

Commit

Permalink
UI|Task Bar: Tweaked menu items
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Feb 19, 2017
1 parent 5f1b4b1 commit cce791b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doomsday/apps/client/src/ui/widgets/taskbarwidget.cpp
Expand Up @@ -73,9 +73,9 @@ enum MenuItemPositions
{
// DE menu:
POS_HOME = 1,
POS_UNLOAD = 2,
POS_CONNECT = 2,
POS_GAMES_SEPARATOR = 3,
POS_CONNECT = 4,
POS_UNLOAD = 4,
POS_PACKAGES = 7,

// Config menu:
Expand Down Expand Up @@ -500,10 +500,10 @@ TaskBarWidget::TaskBarWidget() : GuiWidget("taskbar"), d(new Impl(this))
<< new ui::Item(ui::Item::Separator, tr("Games"))
<< new ui::ActionItem(style().images().image("home.icon"), "",
new SignalAction(this, SLOT(showOrHideHome())))
<< unloadMenu // hidden with null-game
<< new ui::Item(ui::Item::Separator)
<< 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("Resources"))
<< new ui::ActionItem(tr("Browse Packages..."), new SignalAction(this, SLOT(openPackagesSidebar())))
<< new ui::ActionItem(tr("Clear Cache"), new CallbackAction([] () { DoomsdayApp::app().clearCache(); }))
Expand Down

0 comments on commit cce791b

Please sign in to comment.