Skip to content

Commit

Permalink
[Plugin Manager] support multiline breaks in the about tag
Browse files Browse the repository at this point in the history
  • Loading branch information
borysiasty committed May 3, 2014
1 parent b0e4223 commit 4e49a83
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/pluginmanager/qgspluginmanager.cpp
Expand Up @@ -754,7 +754,8 @@ void QgsPluginManager::showPluginDetails( QStandardItem * item )

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

html += "<br/><br/>";
Expand Down

0 comments on commit 4e49a83

Please sign in to comment.