Skip to content

Commit 17528d6

Browse files
committedJan 19, 2016
Merge pull request #2693 from SebDieBln/FixAllLayersFilterConstant
[Bugfix] Make the flag 'All' actually contain all types of layers
2 parents e2e3604 + 9d5617d commit 17528d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/gui/qgsmaplayerproxymodel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class GUI_EXPORT QgsMapLayerProxyModel : public QSortFilterProxyModel
4040
HasGeometry = PointLayer | LineLayer | PolygonLayer,
4141
VectorLayer = NoGeometry | HasGeometry,
4242
PluginLayer = 32,
43-
All = RasterLayer | PolygonLayer | PluginLayer
43+
All = RasterLayer | VectorLayer | PluginLayer
4444
};
4545
Q_DECLARE_FLAGS( Filters, Filter )
4646

0 commit comments

Comments
 (0)
Please sign in to comment.