Mercurial > libervia-backend
diff frontends/src/primitivus/profile_manager.py @ 1489:039d96e131be
frontends: callback are now always used in QuickApp launchAction (before it was only used if validated is present):
- actionManager is used by default (no callback provided)
- in XMLUI, the dialog is closed before calling actionManager
- if keys are not managed in resuling data, an exceptions is raised
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 25 Aug 2015 14:41:42 +0200 |
parents | 66d01f29f886 |
children | 66f0e877625b |
line wrap: on
line diff
--- a/frontends/src/primitivus/profile_manager.py Tue Aug 25 14:22:21 2015 +0200 +++ b/frontends/src/primitivus/profile_manager.py Tue Aug 25 14:41:42 2015 +0200 @@ -167,11 +167,13 @@ if not selected: # profile was just unselected return focused.setState(False, invisible=True) # we don't want the widget to be selected until we are sure we can access it - def authenticate_cb(callback_id, data, profile): - if C.bool(data['validated']): + def authenticate_cb(data, cb_id, profile): + if C.bool(data.pop('validated', C.BOOL_FALSE)): self.current.profile = profile focused.setState(True, invisible=True) self.getConnectionParams(profile) self.host.redraw() + self.host.actionManager(data, callback=authenticate_cb, profile=profile) + self.host.launchAction(C.AUTHENTICATE_PROFILE_ID, callback=authenticate_cb, profile=focused.text)