summaryrefslogtreecommitdiffstats
path: root/shemov.cpp
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2013-08-21 18:52:02 +0200
committerArno <am@disconnect.de>2013-08-21 18:52:02 +0200
commitcd2d39368e2319eb7c949439e9688bf8319ec0a3 (patch)
tree2a0c91966e9a37b172b8e4d2c76eb55c1451aad9 /shemov.cpp
parentd9ed1e53b7ea0c994972f4628a4dbb431fdf9fde (diff)
downloadSheMov-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.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/shemov.cpp b/shemov.cpp
index 6e47575..43ecafa 100644
--- a/shemov.cpp
+++ b/shemov.cpp
@@ -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);