diff options
Diffstat (limited to 'shemov.cpp')
-rw-r--r-- | shemov.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -547,11 +547,11 @@ void SheMov::createActions(){ // NewPicsDialog actions mPVShowNPDialogA = new QAction(tr("Show new pics dialog..."), this); - mPVShowNPDialogA->setShortcut(tr("Meta+s")); + mPVShowNPDialogA->setShortcut(tr("CTRL+s")); connect(mPVShowNPDialogA, SIGNAL(triggered()), picViewer, SLOT(showNewPicsDialog())); picViewer->addAction(mPVShowNPDialogA); - mPVAddToNPA = new QAction(tr("Add to new pics dialog"), this); - mPVAddToNPA->setShortcut(tr("Meta+a")); + mPVAddToNPA = new QAction(tr("Set file in new pics dialog"), this); + mPVAddToNPA->setShortcut(tr("CTRL+a")); connect(mPVAddToNPA, SIGNAL(triggered()), picViewer, SLOT(addToNewPics())); picViewer->addAction(mPVAddToNPA); |