Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[node editor] Dragging a rectangle to select vertices will only select
vertices from a given feature if it is bounded to the node editor panel
  • Loading branch information
nirvn committed Jan 23, 2019
1 parent 2cfbb28 commit 0255a67
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions src/app/vertextool/qgsvertextool.cpp
Expand Up @@ -477,6 +477,7 @@ void QgsVertexTool::cadCanvasReleaseEvent( QgsMapMouseEvent *e )
QgsRectangle map_rect( pt0, pt1 );
QList<Vertex> vertices;
QList<Vertex> selectedVertices;
QList<Vertex> editorVertices;

// for each editable layer, select vertices
const auto layers = canvas()->layers();
Expand All @@ -499,17 +500,28 @@ void QgsVertexTool::cadCanvasReleaseEvent( QgsMapMouseEvent *e )
if ( layerRect.contains( pt ) )
{
vertices << Vertex( vlayer, f.id(), i );

if ( isFeatureSelected )
selectedVertices << Vertex( vlayer, f.id(), i );

if ( mSelectedFeature && mSelectedFeature->featureId() == f.id() && mSelectedFeature->layer() == vlayer )
editorVertices << Vertex( vlayer, f.id(), i );
}
}
}
}

// If there were any vertices that come from selected features, use just vertices from selected features.
// If there were any vertices that come from a feature currently binded to the node editor, use just verices from
// that feature, otherwise if there were any vertices from selected features, use just vertices from those selected features.
// This allows user to select a bunch of features in complex situations to constrain the selection.
if ( !selectedVertices.isEmpty() )
if ( !editorVertices.isEmpty() )
{
vertices = editorVertices;
}
else if ( !selectedVertices.isEmpty() )
{
vertices = selectedVertices;
}

HighlightMode mode = ModeReset;
if ( e->modifiers() & Qt::ShiftModifier )
Expand Down

0 comments on commit 0255a67

Please sign in to comment.