Skip to content

Commit

Permalink
fix MSVC build (followup f5230b1)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Oct 7, 2023
1 parent 54094b6 commit b825ecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/qgsprojectproperties.cpp
Expand Up @@ -923,7 +923,7 @@ QgsProjectProperties::QgsProjectProperties( QgsMapCanvas *mapCanvas, QWidget *pa
cbu->setEnabled( false );
if ( ( provider->capabilities() & QgsVectorDataProvider::ChangeAttributeValues ) )
{
if ( ! currentLayer->isSpatial() or ( provider->capabilities() & QgsVectorDataProvider::ChangeGeometries ) )
if ( ! currentLayer->isSpatial() || ( provider->capabilities() & QgsVectorDataProvider::ChangeGeometries ) )
{
cbu->setEnabled( true );
cbu->setChecked( wfstUpdateLayerIdList.contains( currentLayer->id() ) );
Expand Down

0 comments on commit b825ecc

Please sign in to comment.