Skip to content

Commit ec0ab3f

Browse files
committed
composer attribute table: fix changing header font (fixes #12233)
1 parent fb138b5 commit ec0ab3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/composer/qgscomposerattributetablewidget.cpp

+1-1
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)