Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] Fix exception when picking extent from layer
Fixes #21456
  • Loading branch information
nyalldawson committed Mar 3, 2019
1 parent 9c49b8a commit 541f0c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/ExtentSelectionPanel.py
Expand Up @@ -69,7 +69,7 @@ def __init__(self, parent=None):
vl.addWidget(QLabel(self.tr('Use extent from')))
self.combo = QgsMapLayerComboBox()
self.combo.setFilters(
QgsMapLayerProxyModel.HasGeometry | QgsMapLayerProxyModel.RasterLayer | QgsMapLayerProxyModel.MeshLayer)
QgsMapLayerProxyModel.HasGeometry | QgsMapLayerProxyModel.RasterLayer)
self.combo.setShowCrs(ProcessingConfig.getSetting(ProcessingConfig.SHOW_CRS_DEF))
vl.addWidget(self.combo)

Expand Down

0 comments on commit 541f0c0

Please sign in to comment.