# HG changeset patch # User Goffi # Date 1317290512 -7200 # Node ID f6deca4e328eb2b7a18651bbe821a64451893aac # Parent 1f7a14d0343df64c68a08f98b2fb1bcd3c9cc1ee Primitivus: fixed "info" showDialog diff -r 1f7a14d0343d -r f6deca4e328e frontends/src/primitivus/primitivus --- 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':