Skip to content

Commit

Permalink
respect restrictions when calling identify with layer selection mode
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Aug 5, 2014
1 parent f63a01c commit 9a98ed1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsmaptoolidentify.cpp
Expand Up @@ -100,7 +100,7 @@ QList<QgsMapToolIdentify::IdentifyResult> QgsMapToolIdentify::identify( int x, i
{
// fill map of layer / identify results
mLayerIdResults.clear();
QList<IdentifyResult> idResult = identify( x, y, TopDownAll );
QList<IdentifyResult> idResult = identify( x, y, TopDownAll, layerList, layerType );
QList<IdentifyResult>::const_iterator it = idResult.constBegin();
for ( ; it != idResult.constEnd(); ++it )
{
Expand Down

0 comments on commit 9a98ed1

Please sign in to comment.