More shortcuts for #110.

This commit is contained in:
Martin Rotter 2015-05-11 07:05:28 +02:00
parent fba0a2c0a7
commit 332b488cc4
2 changed files with 16 additions and 6 deletions

View File

@ -9,7 +9,7 @@ Fixed:
<ul>
<li>Target directory settings is now used for all kinds of downloading + when prompt for each download destination is set, then previously used folder is saved. (issue #108)</li>
<li>Fixed solarized skin. (issue #111)</li>
<li>Keyboard shorcuts and toolbar editors now have alphabetically sorted actions. Toolbar editor switched from drag/drop to buttons. (issue
<li>Keyboard shorcuts and toolbar editors now have alphabetically sorted actions. Toolbar editor switched from drag/drop to buttons. You can use CTRL+UP/DOWN arrow to move buttons in toolbar editor or double-click them to add/remove them. (issue
#110)</li>
<li>New constructs on source code level.</li>
<li>Many minor fixes, mainly code cleanup and refactoring.</li>

View File

@ -113,12 +113,22 @@ void ToolBarEditor::saveToolBar() {
}
bool ToolBarEditor::eventFilter(QObject *object, QEvent *event) {
if (event->type() == QEvent::KeyPress) {
QKeyEvent *key_event = static_cast<QKeyEvent*>(event);
if (object == m_ui->m_listActivatedActions) {
if (event->type() == QEvent::KeyPress) {
QKeyEvent *key_event = static_cast<QKeyEvent*>(event);
if (key_event->key() == Qt::Key_Delete) {
deleteSelectedAction();
return true;
if (key_event->key() == Qt::Key_Delete) {
deleteSelectedAction();
return true;
}
else if (key_event->key() == Qt::Key_Down && key_event->modifiers() & Qt::ControlModifier) {
moveActionDown();
return true;
}
else if (key_event->key() == Qt::Key_Up && key_event->modifiers() & Qt::ControlModifier) {
moveActionUp();
return true;
}
}
}