Skip to content

Commit

Permalink
fix case + add break
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Nov 10, 2021
1 parent 325ab02 commit 33f7652
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/gui/providers/qgsdbsourceselectbase.cpp
Expand Up @@ -80,7 +80,7 @@ void QgsDbSourceSelectBase::setSourceModel( QgsAbstractDbTableModel *model )
mSearchSettingsMenu->addAction( wildcardAction );
modeActionGroup->addAction( wildcardAction );
// mode: regexp
mSearchModeRegexAction = new QAction( tr( "Regular expression" ), mSearchSettingsMenu );
mSearchModeRegexAction = new QAction( tr( "Regular Expression" ), mSearchSettingsMenu );
mSearchModeRegexAction->setCheckable( true );
mSearchModeRegexAction->setChecked( false );
mSearchSettingsMenu->addAction( mSearchModeRegexAction );
Expand Down Expand Up @@ -109,6 +109,7 @@ void QgsDbSourceSelectBase::filterResults()
if ( mSearchColumnActions.at( i )->isChecked() )
{
mProxyModel->setFilterKeyColumn( i );
break;
}
}
}
Expand Down

0 comments on commit 33f7652

Please sign in to comment.