Skip to content

Commit

Permalink
[processing] Asumme standard dialog when wrapper’s parent dialog is o…
Browse files Browse the repository at this point in the history
…f unknown class
  • Loading branch information
volaya committed Oct 5, 2016
1 parent a4a74b6 commit 2bb6e4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/gui/wrappers.py
Expand Up @@ -83,7 +83,7 @@ def __init__(self, param, dialog, row=0, col=0):
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)
Expand Down

0 comments on commit 2bb6e4c

Please sign in to comment.