Skip to content

Commit 4e49a83

Browse files
committed
[Plugin Manager] support multiline breaks in the about tag
1 parent b0e4223 commit 4e49a83

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/pluginmanager/qgspluginmanager.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,8 @@ void QgsPluginManager::showPluginDetails( QStandardItem * item )
754754

755755
if ( ! metadata->value( "about" ).isEmpty() )
756756
{
757-
html += metadata->value( "about" );
757+
QString about = metadata->value( "about" );
758+
html += about.replace( "\n", "<br/>" );
758759
}
759760

760761
html += "<br/><br/>";

0 commit comments

Comments
 (0)