Corrected typo in font scaling code.

More printing code for GNOME.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30243 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2004-11-02 21:21:53 +00:00
parent 400be13742
commit fa499247cf
4 changed files with 186 additions and 12 deletions

View File

@@ -1506,8 +1506,8 @@ void wxWindowDC::DoDrawText( const wxString &text, wxCoord x, wxCoord y )
}
int w,h;
if (fabs(m_scaleY - 1.0) < 0.00001)
if (fabs(m_scaleY - 1.0) > 0.00001)
{
// If there is a user or actually any scale applied to
// the device context, scale the font.