From d9376840779c40a5f103550c690e9023f72ad46c Mon Sep 17 00:00:00 2001 From: Mathieu Pellerin Date: Fri, 24 Jan 2025 15:01:06 +0700 Subject: [PATCH] Insure the list of active python plugins in the About dialog is always up-to-date --- src/app/qgisapp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/qgisapp.cpp b/src/app/qgisapp.cpp index bc5c5eea0504..7f40c2bcf529 100644 --- a/src/app/qgisapp.cpp +++ b/src/app/qgisapp.cpp @@ -5439,8 +5439,8 @@ void QgisApp::about() if ( !sAbt ) { sAbt = new QgsAbout( this ); - sAbt->setVersion( QgisApp::getVersionString() ); } + sAbt->setVersion( QgisApp::getVersionString() ); sAbt->show(); sAbt->raise(); sAbt->activateWindow();