Added ALT+A to "add to own model set" (similar to ALT+S for stash)

This commit is contained in:
Klaus Basan
2017-09-19 09:00:17 +02:00
committed by Mathew Sutcliffe
parent 65bc1c00fb
commit 8427aa829d
3 changed files with 13 additions and 2 deletions

View File

@@ -22,6 +22,12 @@ namespace BlackGui
return k;
}
const QKeySequence &CShortcut::keyAddToModelSet()
{
static const QKeySequence k(Qt::ALT + Qt::Key_A);
return k;
}
const QKeySequence &CShortcut::keyClearSelection()
{
static const QKeySequence k(Qt::CTRL + Qt::Key_Space);