Skip to content

Commit

Permalink
fix #7332
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Mar 13, 2013
1 parent bb5c471 commit 96887b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsvectorlayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3904,7 +3904,7 @@ bool QgsVectorLayer::fieldEditable( int idx )
if ( idx >= 0 && idx < fields.count() && mEditTypes.contains( fields[idx].name() ) )
return mFieldEditables[ fields[idx].name()];
else
return false;
return true;
}

void QgsVectorLayer::setFieldEditable( int idx, bool editable )
Expand Down

0 comments on commit 96887b8

Please sign in to comment.