Skip to content

Commit

Permalink
Merge pull request #3598 from borysiasty/master_2
Browse files Browse the repository at this point in the history
[Plugin Manager] Fix font size (issue #15302)
  • Loading branch information
jef-n committed Oct 13, 2016
2 parents 6f84a00 + ffd1a2c commit 5fd4cee
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/app/pluginmanager/qgspluginmanager.cpp
Expand Up @@ -617,7 +617,7 @@ void QgsPluginManager::showPluginDetails( QStandardItem * item )
" padding:0px;"
" margin:0px;"
" font-family:verdana;"
" font-size: 1.1em;"
" font-size: 10pt;"
" }"
" div#votes {"
" width:360px;"
Expand Down Expand Up @@ -1133,11 +1133,11 @@ void QgsPluginManager::setCurrentTab( int idx )
if ( it != mTabDescriptions.constEnd() )
{
tabInfoHTML += "<style>"
"body, table {"
"margin:4px;"
"font-family:verdana;"
"font-size: 12px;"
"}"
" body, p {"
" margin: 2px;"
" font-family: verdana;"
" font-size: 10pt;"
" }"
"</style>";
// tabInfoHTML += "<style>" + QgsApplication::reportStyleSheet() + "</style>";
tabInfoHTML += it.value();
Expand Down

0 comments on commit 5fd4cee

Please sign in to comment.