Skip to content

Commit 541f0c0

Browse files
committed
[processing] Fix exception when picking extent from layer
Fixes #21456
1 parent 9c49b8a commit 541f0c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/processing/gui/ExtentSelectionPanel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def __init__(self, parent=None):
6969
vl.addWidget(QLabel(self.tr('Use extent from')))
7070
self.combo = QgsMapLayerComboBox()
7171
self.combo.setFilters(
72-
QgsMapLayerProxyModel.HasGeometry | QgsMapLayerProxyModel.RasterLayer | QgsMapLayerProxyModel.MeshLayer)
72+
QgsMapLayerProxyModel.HasGeometry | QgsMapLayerProxyModel.RasterLayer)
7373
self.combo.setShowCrs(ProcessingConfig.getSetting(ProcessingConfig.SHOW_CRS_DEF))
7474
vl.addWidget(self.combo)
7575

0 commit comments

Comments
 (0)