Skip to content

Commit

Permalink
in the action dialog update the capture checkbox state when populatin…
Browse files Browse the repository at this point in the history
…g edit section
  • Loading branch information
brushtyler committed Jan 11, 2012
1 parent 0498c95 commit 764e85b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsattributeactiondialog.cpp
Expand Up @@ -285,7 +285,7 @@ void QgsAttributeActionDialog::rowSelected( int row )
actionType->setCurrentIndex( actionType->findText( attributeActionTable->item( row, 0 )->text() ) );
actionName->setText( attributeActionTable->item( row, 1 )->text() );
actionAction->setText( attributeActionTable->item( row, 2 )->text() );
captureCB->setChecked( item->checkState() == Qt::Checked );
captureCB->setChecked( attributeActionTable->item( row, 3 )->checkState() == Qt::Checked );
}
}

Expand Down

0 comments on commit 764e85b

Please sign in to comment.