diff options
author | Arno <am@disconnect.de> | 2013-08-21 18:52:02 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2013-08-21 18:52:02 +0200 |
commit | cd2d39368e2319eb7c949439e9688bf8319ec0a3 (patch) | |
tree | 2a0c91966e9a37b172b8e4d2c76eb55c1451aad9 /shemov.cpp | |
parent | d9ed1e53b7ea0c994972f4628a4dbb431fdf9fde (diff) | |
download | SheMov-cd2d39368e2319eb7c949439e9688bf8319ec0a3.tar.gz SheMov-cd2d39368e2319eb7c949439e9688bf8319ec0a3.tar.bz2 SheMov-cd2d39368e2319eb7c949439e9688bf8319ec0a3.zip |
Usability fix
* repair shortcuts for adding files to NewPicsDialog and showing it from
PictureViewer2
* Replace files in NewPicsDialog instead of adding them
* add missing header to MappingTreeModel
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); |