* src/gramps_main.py: update family view after a GEDCOM import
* src/plugins/TimeLine.py: draw grid after displaying text. Fixes a problem with OpenOffice svn: r2117
This commit is contained in:
@ -172,7 +172,6 @@ class TimeLine:
|
||||
if self.newpage:
|
||||
self.d.page_break()
|
||||
self.d.start_page()
|
||||
self.build_grid(low,high,start,stop)
|
||||
|
||||
index = 1
|
||||
current = 1;
|
||||
@ -215,6 +214,7 @@ class TimeLine:
|
||||
|
||||
if (y2 + incr) >= self.d.get_usable_height():
|
||||
if current != length:
|
||||
self.build_grid(low,high,start,stop)
|
||||
self.d.end_page()
|
||||
self.d.start_page()
|
||||
self.build_grid(low,high,start,stop)
|
||||
@ -224,6 +224,7 @@ class TimeLine:
|
||||
index += 1;
|
||||
current += 1
|
||||
|
||||
self.build_grid(low,high,start,stop)
|
||||
self.d.end_page()
|
||||
if self.standalone:
|
||||
self.d.close()
|
||||
|
Reference in New Issue
Block a user