Skip to content

Commit

Permalink
composer attribute table: fix changing header font (fixes #12233)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Feb 27, 2015
1 parent fb138b5 commit ec0ab3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/composer/qgscomposerattributetablewidget.cpp
Expand Up @@ -286,7 +286,7 @@ void QgsComposerAttributeTableWidget::on_mHeaderFontPushButton_clicked()

bool ok;
QFont newFont = QgisGui::getFont( ok, mComposerTable->headerFont(), tr( "Select Font" ) );
if ( !ok )
if ( ok )
{
QgsComposition *composition = mComposerTable->composition();
if ( composition )
Expand Down

0 comments on commit ec0ab3f

Please sign in to comment.