Clone steps in context menu

This commit is contained in:
Oskar Wallgren
2016-03-22 16:02:30 +01:00
parent 356135b8b0
commit fa0c26e403

View File

@@ -800,6 +800,8 @@ void PatternView::constructContextMenu( QMenu * _cm )
tr( "Add steps" ), m_pat, SLOT( addSteps() ) );
_cm->addAction( embed::getIconPixmap( "step_btn_remove" ),
tr( "Remove steps" ), m_pat, SLOT( removeSteps() ) );
_cm->addAction( embed::getIconPixmap( "step_btn_duplicate" ),
tr( "Clone Steps" ), m_pat, SLOT( cloneSteps() ) );
}
}