Skip to content

Commit

Permalink
Fix case
Browse files Browse the repository at this point in the history
Co-Authored-By: Nyall Dawson <nyall.dawson@gmail.com>
  • Loading branch information
3nids and nyalldawson committed Feb 5, 2020
1 parent b9c036d commit 7e7def8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/attributetable/qgsdualview.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ void QgsDualView::viewWillShowContextMenu( QMenu *menu, const QModelIndex &atInd
if ( !constRegisteredActions.isEmpty() ) if ( !constRegisteredActions.isEmpty() )
{ {
menu->addSeparator(); menu->addSeparator();
QAction *action = menu->addAction( tr( "Actions on selection (%1)" ).arg( mLayer->selectedFeatureCount() ) ); QAction *action = menu->addAction( tr( "Actions on Selection (%1)" ).arg( mLayer->selectedFeatureCount() ) );
action->setEnabled( false ); action->setEnabled( false );


for ( QgsMapLayerAction *action : constRegisteredActions ) for ( QgsMapLayerAction *action : constRegisteredActions )
Expand Down

0 comments on commit 7e7def8

Please sign in to comment.