]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/dcclient.cpp
compilation fix
[wxWidgets.git] / src / gtk / dcclient.cpp
index c673890cba0becd74ccff93ada7f411efdd71f9c..562143fe57c8bde2b48fada5bd860bcf7b7636ad 100644 (file)
@@ -1609,8 +1609,8 @@ void wxWindowDC::DoGetTextExtent(const wxString &string,
     pango_layout_line_get_extents(line, NULL, &rect);
        
     
-    if (width) (*width) = (wxCoord) rect.width;
-    if (height) (*height) = (wxCoord) rect.height;
+    if (width) (*width) = (wxCoord) (rect.width / PANGO_SCALE);
+    if (height) (*height) = (wxCoord) (rect.height / PANGO_SCALE);
     if (descent)
     {
         // Do something about metrics here