Remove redundant dialog title

This commit is contained in:
Nick Hall
2016-05-28 00:01:31 +01:00
parent ab50490617
commit 3c7e357bd1

View File

@ -113,7 +113,7 @@ RCS_BUTTON = { True : _('_Extract'), False : _('_Archive') }
class Information(ManagedWindow): class Information(ManagedWindow):
def __init__(self, uistate, data, parent): def __init__(self, uistate, data, parent):
super().__init__(uistate, [], self) super().__init__(uistate, [], self)
self.window = Gtk.Dialog('Gramp') self.window = Gtk.Dialog()
self.set_window(self.window, None, _("Database Information")) self.set_window(self.window, None, _("Database Information"))
self.window.set_modal(True) self.window.set_modal(True)
self.ok = self.window.add_button(_('_OK'), Gtk.ResponseType.OK) self.ok = self.window.add_button(_('_OK'), Gtk.ResponseType.OK)