summaryrefslogtreecommitdiffstats
path: root/shemov.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'shemov.cpp')
-rw-r--r--shemov.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/shemov.cpp b/shemov.cpp
index 46567c2..1ac1db3 100644
--- a/shemov.cpp
+++ b/shemov.cpp
@@ -418,6 +418,8 @@ void SheMov::createActions(){
//Tree FileWidget actions
mMoveToBurnA = new QAction(tr("Move to burn directory"), this);
connect(mMoveToBurnA, SIGNAL(triggered()), mATree->filesWidget(), SLOT(moveToBurn()));
+ mSetDvdNoA = new QAction(tr("Set dvd number"), this);
+ connect(mSetDvdNoA, SIGNAL(triggered()), mATree->filesWidget(), SLOT(setDvdNo()));
// misc
mOpenWithMapperFS = new QSignalMapper(this);
@@ -564,6 +566,10 @@ void SheMov::createMenus(){
//ArchiveTreeView fileWidget context menu
mATree->filesWidget()->filesTree()->addAction(mMoveToBurnA);
+ QAction *sep10 = new QAction(this);
+ sep10->setSeparator(true);
+ mATree->filesWidget()->filesTree()->addAction(sep10);
+ mATree->filesWidget()->filesTree()->addAction(mSetDvdNoA);
}
void SheMov::createOpenWithMenuFS(){