diff options
author | Arnt Gulbrandsen <arnt@gulbrandsen.priv.no> | 2011-03-10 16:10:13 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-03-12 13:24:15 (GMT) |
commit | 7fbc364cc4ba6aa243a172c2b33e65ddb44ba14c (patch) | |
tree | 811601541b09b7e76e624f3da67789f537ae3117 | |
parent | 5cb351d2d3f337d48b167ec934fe1ace367267a8 (diff) | |
download | swift-7fbc364cc4ba6aa243a172c2b33e65ddb44ba14c.zip swift-7fbc364cc4ba6aa243a172c2b33e65ddb44ba14c.tar.bz2 |
make two new menu items nicely keyboardable
-rw-r--r-- | Swift/QtUI/QtMainWindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Swift/QtUI/QtMainWindow.cpp b/Swift/QtUI/QtMainWindow.cpp index ca357e3..fb629cd 100644 --- a/Swift/QtUI/QtMainWindow.cpp +++ b/Swift/QtUI/QtMainWindow.cpp @@ -75,7 +75,7 @@ QtMainWindow::QtMainWindow(QtSettingsProvider* settings, UIEventStream* uiEventS QMenu* viewMenu = new QMenu(tr("&View"), this); menus_.push_back(viewMenu); - showOfflineAction_ = new QAction(tr("Show offline contacts"), this); + showOfflineAction_ = new QAction(tr("&Show offline contacts"), this); showOfflineAction_->setCheckable(true); showOfflineAction_->setChecked(false); connect(showOfflineAction_, SIGNAL(toggled(bool)), SLOT(handleShowOfflineToggled(bool))); @@ -83,7 +83,7 @@ QtMainWindow::QtMainWindow(QtSettingsProvider* settings, UIEventStream* uiEventS QMenu* actionsMenu = new QMenu(tr("&Actions"), this); menus_.push_back(actionsMenu); - QAction* editProfileAction = new QAction(tr("Edit Profile"), this); + QAction* editProfileAction = new QAction(tr("&Edit Profile"), this); connect(editProfileAction, SIGNAL(triggered()), SLOT(handleEditProfileAction())); actionsMenu->addAction(editProfileAction); QAction* joinMUCAction = new QAction(tr("&Enter Room"), this); |