Skip to content

Commit 33c809b

Browse files
author
gsherman
committedJan 5, 2011
Default the disable_enter_attribute_values_dialog value to false for
users that have not set this option. This keeps it in sync with the checkbox in the options dialog that, by default, is unchecked. Previously on a new install the attribute dialog doesn't appear, leaving users confused about how to enter attribute information. git-svn-id: http://svn.osgeo.org/qgis/trunk@14995 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 1859838 commit 33c809b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/app/qgsfeatureaction.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ bool QgsFeatureAction::addFeature()
158158
mLayer->beginEditCommand( text() );
159159

160160
// show the dialog to enter attribute values
161-
bool isDisabledAttributeValuesDlg = settings.value( "/qgis/digitizing/disable_enter_attribute_values_dialog", true ).toBool();
161+
bool isDisabledAttributeValuesDlg = settings.value( "/qgis/digitizing/disable_enter_attribute_values_dialog", false ).toBool();
162162
if ( isDisabledAttributeValuesDlg )
163163
{
164164
res = mLayer->addFeature( mFeature );

0 commit comments

Comments
 (0)
Please sign in to comment.