Skip to content

Commit 2c80988

Browse files
lynxlynxlynxjef-n
authored andcommitted
plugin manager: use a case insensitive sort (fixes #5845)
1 parent 50ce03a commit 2c80988

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/app/qgspluginmanager.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ void QgsPluginManager::setTable()
135135
mModelPlugins = new QStandardItemModel( 0, 1 );
136136
mModelProxy = new QSortFilterProxyModel( this );
137137
mModelProxy->setSourceModel( mModelPlugins );
138+
mModelProxy->setSortCaseSensitivity( Qt::CaseInsensitive );
138139
vwPlugins->setModel( mModelProxy );
139140
vwPlugins->setFocus();
140141
vwPlugins->setItemDelegateForColumn( 0, new QgsDetailedItemDelegate() );

0 commit comments

Comments
 (0)