Skip to content

Commit aab071d

Browse files
committedJun 24, 2015
Filtering in expression widget should be case insensitive (refs #11627)
1 parent 433e87d commit aab071d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎src/gui/qgsexpressionbuilderwidget.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@
3333
class QgsExpressionItemSearchProxy : public QSortFilterProxyModel
3434
{
3535
public:
36-
QgsExpressionItemSearchProxy() { }
36+
QgsExpressionItemSearchProxy()
37+
{
38+
setFilterCaseSensitivity( Qt::CaseInsensitive );
39+
}
3740

3841
bool filterAcceptsRow( int source_row, const QModelIndex &source_parent ) const override
3942
{

0 commit comments

Comments
 (0)
Please sign in to comment.