Mercurial > libervia-backend
changeset 382:f6deca4e328e
Primitivus: fixed "info" showDialog
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 29 Sep 2011 12:01:52 +0200 |
parents | 1f7a14d0343d |
children | 98e1d44d5cd4 |
files | frontends/src/primitivus/primitivus |
diffstat | 1 files changed, 0 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/frontends/src/primitivus/primitivus Sat Aug 27 17:24:17 2011 +0200 +++ b/frontends/src/primitivus/primitivus Thu Sep 29 12:01:52 2011 +0200 @@ -361,7 +361,6 @@ def showDialog(self, message, title="", type="info", answer_cb = None, answer_data = None): if type == 'info': popup = sat_widgets.Alert(unicode(title), unicode(message), ok_cb=answer_cb or self.removePopUp) #FIXME: remove unicode here when DBus Bridge will no return dbus.String anymore - flags = wx.OK | wx.ICON_INFORMATION elif type == 'error': popup = sat_widgets.Alert(unicode(title), unicode(message), ok_cb=answer_cb or self.removePopUp) #FIXME: remove unicode here when DBus Bridge will no return dbus.String anymore elif type == 'yes/no':