Skip to content

Commit fe9161f

Browse files
committedFeb 27, 2015
composer attribute table: fix changing header font (fixes #12233)
(cherry picked from commit ec0ab3f)
1 parent e4c2125 commit fe9161f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/composer/qgscomposerattributetablewidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ void QgsComposerAttributeTableWidget::on_mHeaderFontPushButton_clicked()
286286

287287
bool ok;
288288
QFont newFont = QgisGui::getFont( ok, mComposerTable->headerFont(), tr( "Select Font" ) );
289-
if ( !ok )
289+
if ( ok )
290290
{
291291
QgsComposition *composition = mComposerTable->composition();
292292
if ( composition )

0 commit comments

Comments
 (0)
Please sign in to comment.