Skip to content

Commit

Permalink
plugin manager: use a case insensitive sort (fixes #5845)
Browse files Browse the repository at this point in the history
  • Loading branch information
lynxlynxlynx authored and jef-n committed Jun 25, 2012
1 parent 50ce03a commit 2c80988
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/app/qgspluginmanager.cpp
Expand Up @@ -135,6 +135,7 @@ void QgsPluginManager::setTable()
mModelPlugins = new QStandardItemModel( 0, 1 );
mModelProxy = new QSortFilterProxyModel( this );
mModelProxy->setSourceModel( mModelPlugins );
mModelProxy->setSortCaseSensitivity( Qt::CaseInsensitive );
vwPlugins->setModel( mModelProxy );
vwPlugins->setFocus();
vwPlugins->setItemDelegateForColumn( 0, new QgsDetailedItemDelegate() );
Expand Down

0 comments on commit 2c80988

Please sign in to comment.