# HG changeset patch # User Goffi # Date 1523023860 -7200 # Node ID 0704f3be65cbc1f61cad415533f02a6409de17a0 # Parent d3ebe8caa26bb3d79687f3de197af66bdcb62f1b xmlui: fixed missing whitelist argument diff -r d3ebe8caa26b -r 0704f3be65cb cagou/core/xmlui.py --- a/cagou/core/xmlui.py Fri Apr 06 16:10:58 2018 +0200 +++ b/cagou/core/xmlui.py Fri Apr 06 16:11:00 2018 +0200 @@ -483,7 +483,7 @@ class XMLUIPanel(xmlui.XMLUIPanel, ScrollView): widget_factory = WidgetFactory() - def __init__(self, host, parsed_xml, title=None, flags=None, callback=None, ignore=None, profile=C.PROF_KEY_NONE): + def __init__(self, host, parsed_xml, title=None, flags=None, callback=None, ignore=None, whitelist=None, profile=C.PROF_KEY_NONE): ScrollView.__init__(self) self.close_cb = None self._grid = XMLUIPanelGrid() @@ -496,6 +496,7 @@ flags=flags, callback=callback, ignore=ignore, + whitelist=whitelist, profile=profile) def add_widget(self, wid):