Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
use capital letter for "Show in Overview" action in layer contextual …
…menu
  • Loading branch information
slarosa committed Oct 6, 2015
1 parent 6378056 commit 0dc4c8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/layertree/qgslayertreeviewdefaultactions.cpp
Expand Up @@ -51,7 +51,7 @@ QAction* QgsLayerTreeViewDefaultActions::actionShowInOverview( QObject* parent )
if ( !node )
return 0;

QAction* a = new QAction( tr( "&Show in overview" ), parent );
QAction* a = new QAction( tr( "&Show in Overview" ), parent );
connect( a, SIGNAL( triggered() ), this, SLOT( showInOverview() ) );
a->setCheckable( true );
a->setChecked( node->customProperty( "overview", 0 ).toInt() );
Expand Down

0 comments on commit 0dc4c8e

Please sign in to comment.