Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix #8297. Select all when expression is blank
  • Loading branch information
NathanW2 committed Jul 15, 2013
1 parent 38c8b56 commit 85034e9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/app/qgsattributetabledialog.cpp
Expand Up @@ -568,6 +568,11 @@ void QgsAttributeTableDialog::filterQueryChanged( const QString& query )

void QgsAttributeTableDialog::filterQueryAccepted()
{
if ( mFilterQuery->text().isEmpty() )
{
filterShowAll();
return;
}
filterQueryChanged( mFilterQuery->text() );
}

Expand Down

0 comments on commit 85034e9

Please sign in to comment.