Skip to content

Commit

Permalink
Set custom QGIS-style group boxes as default on Mac
Browse files Browse the repository at this point in the history
- Mac Qt-style group boxes have issues that need addressed by Qt
  • Loading branch information
dakcarto committed Mar 12, 2013
1 parent 54d6fdd commit 5b898b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgisappstylesheet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ QMap<QString, QVariant> QgisAppStyleSheet::defaultOptions()
QgsDebugMsg( QString( "fontFamily: %1" ).arg( fontFamily ) );
opts.insert( "fontFamily", QVariant( fontFamily ) );

bool gbxCustom = false;
bool gbxCustom = ( mMacStyle ? true : false );
opts.insert( "groupBoxCustom", settings.value( "groupBoxCustom", QVariant( gbxCustom ) ) );

bool gbxBoldTitle = false;
Expand Down

0 comments on commit 5b898b1

Please sign in to comment.