From 26f8be9286b9e84893a1bdbf646dd717bc163c41 Mon Sep 17 00:00:00 2001 From: Borys Jurgiel Date: Sun, 16 Feb 2014 18:06:48 +0100 Subject: [PATCH] [Plugin Manager] Fix window title update --- src/app/pluginmanager/qgspluginmanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/pluginmanager/qgspluginmanager.cpp b/src/app/pluginmanager/qgspluginmanager.cpp index 609eed70c594..bbef4d70ad9c 100644 --- a/src/app/pluginmanager/qgspluginmanager.cpp +++ b/src/app/pluginmanager/qgspluginmanager.cpp @@ -1354,8 +1354,8 @@ void QgsPluginManager::updateWindowTitle( ) { // if it's not the Settings tab, add the plugin count title += QString( " (%3)" ).arg( mModelProxy->countWithCurrentStatus() ); - setWindowTitle( title ); } + setWindowTitle( title ); } else {