* src/Report.py: bumped the maximum generations to 999 from 31

svn: r5334
This commit is contained in:
Don Allingham 2005-10-19 03:24:18 +00:00
parent d7e373e05a
commit cf616ebcfb
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2005-10-18 Don Allingham <don@gramps-project.org>
* src/Report.py: bumped the maximum generations to 999 from 31
2005-10-18 Martin Hawlisch <Martin.Hawlisch@gmx.de>
* src/plugins/NavWebPage.py: Support side-by-side gallery images
* src/data/main*.css: Support side-by-side gallery images

View File

@ -689,7 +689,7 @@ class BareReportDialog:
if self.max_gen:
self.generations_spinbox = gtk.SpinButton(digits=0)
self.generations_spinbox.set_numeric(1)
adjustment = gtk.Adjustment(self.max_gen,1,31,1,0)
adjustment = gtk.Adjustment(self.max_gen,1,999,1,0)
self.generations_spinbox.set_adjustment(adjustment)
adjustment.value_changed()
label = gtk.Label("%s:" % _("Generations"))