Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #2693 from SebDieBln/FixAllLayersFilterConstant
[Bugfix] Make the flag 'All' actually contain all types of layers
  • Loading branch information
nyalldawson committed Jan 19, 2016
2 parents e2e3604 + 9d5617d commit 17528d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsmaplayerproxymodel.h
Expand Up @@ -40,7 +40,7 @@ class GUI_EXPORT QgsMapLayerProxyModel : public QSortFilterProxyModel
HasGeometry = PointLayer | LineLayer | PolygonLayer,
VectorLayer = NoGeometry | HasGeometry,
PluginLayer = 32,
All = RasterLayer | PolygonLayer | PluginLayer
All = RasterLayer | VectorLayer | PluginLayer
};
Q_DECLARE_FLAGS( Filters, Filter )

Expand Down

0 comments on commit 17528d6

Please sign in to comment.