Skip to content

Commit f60149b

Browse files
committed
Fix bad string
(cherry-picked from 967254)
1 parent 7487be0 commit f60149b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/qgssnappingwidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ QgsSnappingWidget::QgsSnappingWidget( QgsProject *project, QgsMapCanvas *canvas,
9292
mEnabledAction = new QAction( tr( "Toggle snapping" ), this );
9393
mEnabledAction->setCheckable( true );
9494
mEnabledAction->setIcon( QIcon( QgsApplication::getThemeIcon( "/mIconSnapping.svg" ) ) );
95-
mEnabledAction->setToolTip( tr( "toggle snapping (S)" ) );
95+
mEnabledAction->setToolTip( tr( "Enable Snapping (S)" ) );
9696
mEnabledAction->setShortcut( tr( "S", "Keyboard shortcut: toggle snapping" ) );
9797
mEnabledAction->setObjectName( QStringLiteral( "EnableSnappingAction" ) );
9898
connect( mEnabledAction, &QAction::toggled, this, &QgsSnappingWidget::enableSnapping );

0 commit comments

Comments
 (0)