0001515: GraphViz reports don't register page margins on report_options.xml
svn: r9758
This commit is contained in:
parent
21f8c08ace
commit
65adf61947
@ -1,3 +1,8 @@
|
||||
2008-01-08 Brian Matherly <brian@gramps-project.org>
|
||||
* src/ReportBase/_GraphvizReportDialog.py:
|
||||
Fix 0001515: GraphViz reports don't register page margins on
|
||||
report_options.xml
|
||||
|
||||
2008-01-08 Brian Matherly <brian@gramps-project.org>
|
||||
* src/plugins/AncestorChart.py:
|
||||
* src/plugins/DescendChart.py:
|
||||
|
@ -886,7 +886,9 @@ class GraphvizReportDialog(ReportDialog):
|
||||
self.paper_label.set_use_markup(True)
|
||||
|
||||
self.paper_frame = PaperFrame(self.options.handler.get_paper_name(),
|
||||
self.options.handler.get_orientation())
|
||||
self.options.handler.get_orientation(),
|
||||
self.options.handler.get_margins()
|
||||
)
|
||||
self.notebook.insert_page(self.paper_frame,self.paper_label,0)
|
||||
self.paper_frame.show_all()
|
||||
|
||||
@ -945,6 +947,7 @@ class GraphvizReportDialog(ReportDialog):
|
||||
|
||||
self.options.handler.set_paper_name(self.paper_frame.get_paper_name())
|
||||
self.options.handler.set_orientation(self.paper_frame.get_orientation())
|
||||
self.options.handler.set_margins(self.paper_frame.get_paper_margins())
|
||||
|
||||
# Create the output document.
|
||||
self.make_document()
|
||||
|
Loading…
Reference in New Issue
Block a user