Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit efe52d7

Browse files
authoredFeb 4, 2025··
[processing][gui] Fix InterpolationDataWidget
Fix initialisation of "Use Z-coordinate for interpolation" checkbox
1 parent dd03eeb commit efe52d7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎python/plugins/processing/algs/qgis/ui/InterpolationWidgets.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ def __init__(self):
105105
self.cmbLayers.layerChanged.connect(self.layerChanged)
106106
self.cmbLayers.setFilters(Qgis.LayerFilter.VectorLayer)
107107
self.cmbFields.setFilters(QgsFieldProxyModel.Filter.Numeric)
108-
self.cmbFields.setLayer(self.cmbLayers.currentLayer())
108+
109+
self.layerChanged(self.cmbLayers.currentLayer())
109110

110111
def addLayer(self):
111112
layer = self.cmbLayers.currentLayer()

0 commit comments

Comments
 (0)
Please sign in to comment.