Skip to content

Commit 17aa88c

Browse files
committedNov 6, 2017
[Plugin manager] Fix window title
1 parent ae33b58 commit 17aa88c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/pluginmanager/qgspluginmanager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1572,7 +1572,7 @@ void QgsPluginManager::updateWindowTitle()
15721572
if ( curitem )
15731573
{
15741574
QString title = QStringLiteral( "%1 | %2" ).arg( tr( "Plugins" ), curitem->text() );
1575-
if ( mOptionsListWidget->currentRow() < mOptionsListWidget->count() - 1 && mModelPlugins )
1575+
if ( mOptionsListWidget->currentRow() < mOptionsListWidget->count() - 2 && mModelPlugins )
15761576
{
15771577
// if it's not the Settings tab, add the plugin count
15781578
title += QStringLiteral( " (%3)" ).arg( mModelProxy->countWithCurrentStatus() );

0 commit comments

Comments
 (0)
Please sign in to comment.