|
@@ -71,8 +71,9 @@ class AlgorithmDialog(QgsProcessingAlgorithmDialogBase):
|
|
|
if not self.in_place:
|
|
|
self.runAsBatchButton = QPushButton(QCoreApplication.translate("AlgorithmDialog", "Run as Batch Process…"))
|
|
|
self.runAsBatchButton.clicked.connect(self.runAsBatch)
|
|
|
- self.buttonBox().addButton(self.runAsBatchButton,
|
|
|
- QDialogButtonBox.ResetRole) # reset role to ensure left alignment
|
|
|
+ # 隐藏批处理入口
|
|
|
+ # self.buttonBox().addButton(self.runAsBatchButton,
|
|
|
+ # QDialogButtonBox.ResetRole) # reset role to ensure left alignment
|
|
|
else:
|
|
|
in_place_input_parameter_name = 'INPUT'
|
|
|
if hasattr(alg, 'inputParameterName'):
|