From 2bb6e4c19faee7f33b380f101385d22735ea1429 Mon Sep 17 00:00:00 2001 From: volaya Date: Wed, 14 Sep 2016 07:26:45 +0200 Subject: [PATCH] =?UTF-8?q?[processing]=20Asumme=20standard=20dialog=20whe?= =?UTF-8?q?n=20wrapper=E2=80=99s=20parent=20dialog=20is=20of=20unknown=20c?= =?UTF-8?q?lass?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python/plugins/processing/gui/wrappers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/plugins/processing/gui/wrappers.py b/python/plugins/processing/gui/wrappers.py index 18a0dec223a..3605e61bc8c 100644 --- a/python/plugins/processing/gui/wrappers.py +++ b/python/plugins/processing/gui/wrappers.py @@ -83,7 +83,7 @@ class WidgetWrapper(QObject): self.dialog = dialog self.row = row self.col = col - self.dialogType = dialogTypes[dialog.__class__.__name__] + self.dialogType = dialogTypes.get(dialog.__class__.__name__, DIALOG_STANDARD) self.widget = self.createWidget() if param.default is not None: self.setValue(param.default)