changed shortcuts to CTRL+ALT+arrow

This commit is contained in:
Denis Rouzaud 2019-05-19 20:39:49 -05:00 committed by GitHub
parent bb3c50714a
commit 2369e06b17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,10 +89,10 @@ QgsDualView::QgsDualView( QWidget *parent )
break;
}
};
createShortcuts( QStringLiteral( "Ctrl+Up" ), QgsFeatureListView::First );
createShortcuts( QStringLiteral( "Ctrl+Left" ), QgsFeatureListView::Previous );
createShortcuts( QStringLiteral( "Ctrl+Right" ), QgsFeatureListView::Next );
createShortcuts( QStringLiteral( "Ctrl+Down" ), QgsFeatureListView::Last );
createShortcuts( QStringLiteral( "Ctrl+Alt+Up" ), QgsFeatureListView::First );
createShortcuts( QStringLiteral( "Ctrl+Alt+Left" ), QgsFeatureListView::Previous );
createShortcuts( QStringLiteral( "Ctrl+Alt+Right" ), QgsFeatureListView::Next );
createShortcuts( QStringLiteral( "Ctrl+Alt+Down" ), QgsFeatureListView::Last );
QButtonGroup *buttonGroup = new QButtonGroup( this );
buttonGroup->setExclusive( false );