From: Vadim Zeitlin Date: Sun, 16 Nov 2008 14:22:09 +0000 (+0000) Subject: fix restoration of the old font size in DoGetTextExtent() (thanks icc for a nice... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5bd57a7e4f7afb5caa66c63cf1fb44e350671d81 fix restoration of the old font size in DoGetTextExtent() (thanks icc for a nice warning) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56791 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/gnome/gprint.cpp b/src/gtk/gnome/gprint.cpp index 2e389c56e6..d3e6fbe58d 100644 --- a/src/gtk/gnome/gprint.cpp +++ b/src/gtk/gnome/gprint.cpp @@ -1925,8 +1925,8 @@ void wxGnomePrinterDCImpl::DoGetTextExtent(const wxString& string, wxCoord *widt { // scale the font and apply it PangoFontDescription *desc = theFont->GetNativeFontInfo()->description; - float size = pango_font_description_get_size(desc); - size = size * GetFontPointSizeAdjustment(72.0); + oldSize = pango_font_description_get_size(desc); + float size = oldSize * GetFontPointSizeAdjustment(72.0); pango_font_description_set_size(desc, (gint)size); pango_layout_set_font_description(m_layout, desc);