Skip to content

Commit

Permalink
changed shortcuts to CTRL+ALT+arrow
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed May 20, 2019
1 parent bb3c507 commit 2369e06
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/gui/attributetable/qgsdualview.cpp
Expand Up @@ -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 );
Expand Down

0 comments on commit 2369e06

Please sign in to comment.