[processing] Fix DeleteColumn output hint

the dropped fields are discarded, the modeller get the rest, as expected
This commit is contained in:
Jaka Kranjc 2018-09-09 09:24:16 +02:00 committed by Nyall Dawson
parent d849dd62b6
commit d54bd1a203

View File

@ -66,7 +66,7 @@ class DeleteColumn(QgisFeatureBasedAlgorithm):
return self.tr('Drop field(s)')
def outputName(self):
return self.tr('Fields dropped')
return self.tr('Remaining fields')
def prepareAlgorithm(self, parameters, context, feedback):
self.fields_to_delete = self.parameterAsFields(parameters, self.COLUMNS, context)