Skip to content

Commit

Permalink
Fix bad string
Browse files Browse the repository at this point in the history
(cherry-picked from 967254)
  • Loading branch information
nyalldawson committed Feb 27, 2018
1 parent 7487be0 commit f60149b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgssnappingwidget.cpp
Expand Up @@ -92,7 +92,7 @@ QgsSnappingWidget::QgsSnappingWidget( QgsProject *project, QgsMapCanvas *canvas,
mEnabledAction = new QAction( tr( "Toggle snapping" ), this );
mEnabledAction->setCheckable( true );
mEnabledAction->setIcon( QIcon( QgsApplication::getThemeIcon( "/mIconSnapping.svg" ) ) );
mEnabledAction->setToolTip( tr( "toggle snapping (S)" ) );
mEnabledAction->setToolTip( tr( "Enable Snapping (S)" ) );
mEnabledAction->setShortcut( tr( "S", "Keyboard shortcut: toggle snapping" ) );
mEnabledAction->setObjectName( QStringLiteral( "EnableSnappingAction" ) );
connect( mEnabledAction, &QAction::toggled, this, &QgsSnappingWidget::enableSnapping );
Expand Down

0 comments on commit f60149b

Please sign in to comment.