File tree 1 file changed +6
-2
lines changed
python/plugins/processing/gui
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -761,7 +761,9 @@ def createWidget(self):
761
761
self .combo .currentTextChanged .connect (lambda : self .widgetValueHasChanged .emit (self ))
762
762
return widget
763
763
elif self .dialogType == DIALOG_BATCH :
764
- return BatchInputSelectionPanel (self .param , self .row , self .col , self .dialog )
764
+ widget = BatchInputSelectionPanel (self .param , self .row , self .col , self .dialog )
765
+ widget .valueChanged .connect (lambda : self .widgetValueHasChanged .emit (self ))
766
+ return widget
765
767
else :
766
768
self .combo = QComboBox ()
767
769
layers = self .getAvailableLayers ()
@@ -1274,7 +1276,9 @@ def createWidget(self):
1274
1276
return widget
1275
1277
1276
1278
elif self .dialogType == DIALOG_BATCH :
1277
- return BatchInputSelectionPanel (self .param , self .row , self .col , self .dialog )
1279
+ widget = BatchInputSelectionPanel (self .param , self .row , self .col , self .dialog )
1280
+ widget .valueChanged .connect (lambda : self .widgetValueHasChanged .emit (self ))
1281
+ return widget
1278
1282
else :
1279
1283
self .combo = QComboBox ()
1280
1284
self .combo .setEditable (True )
You can’t perform that action at this time.
0 commit comments