Mercurial > libervia-backend
comparison frontends/src/jp/xmlui_manager.py @ 2410:40e6e779a253
jp (xmlui): XMLUIDialog.show has now a dummy argument, so workflow arguments can be put there
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 31 Oct 2017 23:29:45 +0100 |
parents | a870daeab15e |
children | 7641bef56dcd |
comparison
equal
deleted
inserted
replaced
2409:d2ff5ff3de77 | 2410:40e6e779a253 |
---|---|
482 class XMLUIDialog(xmlui_manager.XMLUIDialog): | 482 class XMLUIDialog(xmlui_manager.XMLUIDialog): |
483 type = 'dialog' | 483 type = 'dialog' |
484 dialog_factory = WidgetFactory() | 484 dialog_factory = WidgetFactory() |
485 readonly = False | 485 readonly = False |
486 | 486 |
487 def show(self): | 487 def show(self, dummy=None): |
488 self.dlg.show() | 488 self.dlg.show() |
489 | 489 |
490 def _xmluiClose(self): | 490 def _xmluiClose(self): |
491 pass | 491 pass |
492 | 492 |