0001917: UI font gets small when creating PDF documents.

svn: r10233
This commit is contained in:
Brian Matherly 2008-03-09 03:33:11 +00:00
parent fa0b508924
commit c247caa5e9
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-03-08 Brian Matherly <brian@gramps-project.org>
* src/docgen/PdfDoc.py:
0001917: UI font gets small when creating PDF documents.
2008-03-08 Brian Matherly <brian@gramps-project.org> 2008-03-08 Brian Matherly <brian@gramps-project.org>
* src/gen/lib/note.py: * src/gen/lib/note.py:
* src/Editors/_EditNote.py: * src/Editors/_EditNote.py:

View File

@ -1,7 +1,8 @@
# #
# Gramps - a GTK+/GNOME based genealogy program # Gramps - a GTK+/GNOME based genealogy program
# #
# Copyright (C) 2007 Zsolt Foldvari # Copyright (C) 2007 Zsolt Foldvari
# Copyright (C) 2008 Brian G. Matherly
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
@ -91,6 +92,7 @@ class PdfDoc(CairoDoc):
cr = pangocairo.CairoContext(cairo.Context(surface)) cr = pangocairo.CairoContext(cairo.Context(surface))
fontmap = pangocairo.cairo_font_map_get_default() fontmap = pangocairo.cairo_font_map_get_default()
saved_resolution = fontmap.get_resolution()
fontmap.set_resolution(DPI) fontmap.set_resolution(DPI)
pango_context = fontmap.create_context() pango_context = fontmap.create_context()
@ -117,6 +119,10 @@ class PdfDoc(CairoDoc):
# close the surface (file) # close the surface (file)
surface.finish() surface.finish()
# Restore the resolution. On windows, Gramps UI fonts will be smaller
# if we don't restore the resolution.
fontmap.set_resolution(saved_resolution)
# load the result into an external viewer # load the result into an external viewer
if self.print_req: if self.print_req: