* src/Report.py: bumped the maximum generations to 999 from 31
svn: r5334
This commit is contained in:
parent
d7e373e05a
commit
cf616ebcfb
@ -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
|
||||
|
@ -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"))
|
||||
|
Loading…
x
Reference in New Issue
Block a user