diff options
author | Arno <am@disconnect.de> | 2012-03-03 06:36:22 +0100 |
---|---|---|
committer | Arno <am@disconnect.de> | 2012-03-03 06:36:22 +0100 |
commit | 5d1e566d275b47fa590fb9e9879b9a1f970fc3ba (patch) | |
tree | 5d1f2d6f68de9318f21bb1a6145944b833aa883e /shemov.cpp | |
parent | 08861cc269ba6126ec7fa3bfad4f946fb60d3d98 (diff) | |
download | SheMov-5d1e566d275b47fa590fb9e9879b9a1f970fc3ba.tar.gz SheMov-5d1e566d275b47fa590fb9e9879b9a1f970fc3ba.tar.bz2 SheMov-5d1e566d275b47fa590fb9e9879b9a1f970fc3ba.zip |
Impement editing of picture mappings
Make it possible to edit picture mappings on archived pictures.
Diffstat (limited to 'shemov.cpp')
-rw-r--r-- | shemov.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -608,6 +608,9 @@ void SheMov::createActions(){ mDeletePicFromA = new QAction(tr("Delete..."), this); mPicWidget->picView()->addAction(mDeletePicFromA); connect(mDeletePicFromA, SIGNAL(triggered()), mPicWidget->picView(), SLOT(deletePics())); + mEditPicsMappingsA = new QAction(tr("Edit mappings..."), this); + mPicWidget->picView()->addAction(mEditPicsMappingsA); + connect(mEditPicsMappingsA, SIGNAL(triggered()), mPicWidget->picView(), SIGNAL(editPicsMappings())); // misc mOpenWithMapperFS = new QSignalMapper(this); |