Do not show previously notified addons

svn: r15772
This commit is contained in:
Doug Blank
2010-08-19 01:04:10 +00:00
parent 0fa7b97cf9
commit 88a4bbb926
3 changed files with 45 additions and 19 deletions

View File

@ -979,6 +979,11 @@ class GrampsPreferences(ConfigureDialog):
elif active == 2: # update
config.set('behavior.check-for-update-types', ["update", "new"])
def toggle_hide_previous_addons(self, obj):
active = obj.get_active()
config.set('behavior.do-not-show-previously-seen-updates',
bool(active))
def check_for_updates_changed(self, obj):
active = obj.get_active()
config.set('behavior.check-for-updates', active)
@ -1084,10 +1089,16 @@ class GrampsPreferences(ConfigureDialog):
table.attach(lwidget, 1, 2, 7, 8, yoptions=0)
table.attach(self.whattype_box, 2, 3, 7, 8, yoptions=0)
checkbutton = gtk.CheckButton(
_("Do not ask about previously notified addons"))
checkbutton.set_active(config.get('behavior.do-not-show-previously-seen-updates'))
checkbutton.connect("toggled", self.toggle_hide_previous_addons)
table.attach(checkbutton, 0, 3, 8, 9, yoptions=0)
button = gtk.Button(_("Check now"))
button.connect("clicked", lambda obj: \
self.uistate.viewmanager.check_for_updates(force=True))
table.attach(button, 3, 4, 7, 8, yoptions=0)
table.attach(button, 3, 4, 8, 9, yoptions=0)
return _('General'), table