Skip to content

Commit 764e85b

Browse files
committed
in the action dialog update the capture checkbox state when populating edit section
1 parent 0498c95 commit 764e85b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/qgsattributeactiondialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ void QgsAttributeActionDialog::rowSelected( int row )
285285
actionType->setCurrentIndex( actionType->findText( attributeActionTable->item( row, 0 )->text() ) );
286286
actionName->setText( attributeActionTable->item( row, 1 )->text() );
287287
actionAction->setText( attributeActionTable->item( row, 2 )->text() );
288-
captureCB->setChecked( item->checkState() == Qt::Checked );
288+
captureCB->setChecked( attributeActionTable->item( row, 3 )->checkState() == Qt::Checked );
289289
}
290290
}
291291

0 commit comments

Comments
 (0)