Skip to content

Commit 600ff4f

Browse files
committedJun 30, 2016
initially disable advanced digitizing panel (fixes #15073)
1 parent 174d112 commit 600ff4f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎src/app/qgisapp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7383,7 +7383,7 @@ void QgisApp::editPaste( QgsMapLayer *destinationLayer )
73837383
for ( int dst = 0; dst < dstAttr.count(); ++dst )
73847384
{
73857385
QVariant defVal( pasteVectorLayer->dataProvider()->defaultValue( dst ) );
7386-
if( !defVal.isNull() )
7386+
if ( !defVal.isNull() )
73877387
{
73887388
dstAttr[ dst ] = defVal;
73897389
}

‎src/gui/qgsadvanceddigitizingdockwidget.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ QgsAdvancedDigitizingDockWidget::QgsAdvancedDigitizingDockWidget( QgsMapCanvas*
198198
connect( mSettingsButton, SIGNAL( triggered( QAction* ) ), this, SLOT( settingsButtonTriggered( QAction* ) ) );
199199

200200
updateCapacity( true );
201+
disable();
201202
}
202203

203204
void QgsAdvancedDigitizingDockWidget::hideEvent( QHideEvent* )

0 commit comments

Comments
 (0)
Please sign in to comment.