mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-06 01:45:38 +08:00
refs #911, shortcut for cut/copy
* changed unselect * use CTRL+C for copy
This commit is contained in:
committed by
Mathew Sutcliffe
parent
08f8916344
commit
864e64e295
@@ -24,7 +24,7 @@ namespace BlackGui
|
||||
|
||||
const QKeySequence &CShortcut::keyClearSelection()
|
||||
{
|
||||
static const QKeySequence k(Qt::CTRL + Qt::Key_C);
|
||||
static const QKeySequence k(Qt::CTRL + Qt::Key_Space);
|
||||
return k;
|
||||
}
|
||||
|
||||
@@ -64,4 +64,10 @@ namespace BlackGui
|
||||
static const QKeySequence k(Qt::Key_Escape);
|
||||
return k;
|
||||
}
|
||||
|
||||
const QKeySequence &CShortcut::keyCopy()
|
||||
{
|
||||
static const QKeySequence k(Qt::CTRL + Qt::Key_C);
|
||||
return k;
|
||||
}
|
||||
} // ns
|
||||
|
||||
Reference in New Issue
Block a user