Skip to content

Commit 1ed95f4

Browse files
DelazJnyalldawson
authored andcommitted
Fix Select tools switch settings
1 parent 83fdc5d commit 1ed95f4

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/app/qgisapp.cpp

+1-4
Original file line numberDiff line numberDiff line change
@@ -2319,11 +2319,8 @@ void QgisApp::createToolBars()
23192319
bt->addActions( selectionActions );
23202320

23212321
QAction *defSelectAction = mActionSelectFeatures;
2322-
switch ( settings.value( QStringLiteral( "UI/selectTool" ), 0 ).toInt() )
2322+
switch ( settings.value( QStringLiteral( "UI/selectTool" ), 1 ).toInt() )
23232323
{
2324-
case 0:
2325-
defSelectAction = mActionSelectFeatures;
2326-
break;
23272324
case 1:
23282325
defSelectAction = mActionSelectFeatures;
23292326
break;

0 commit comments

Comments
 (0)