diff --git a/sugar/graphics/units.py b/sugar/graphics/units.py index fe39a9f8..866a3d6e 100644 --- a/sugar/graphics/units.py +++ b/sugar/graphics/units.py @@ -3,7 +3,8 @@ import gtk import _sugar def points_to_pixels(points): - return points * _sugar.get_screen_dpi() / 72.0 + screen_factor = gtk.gdk.screen_width() / 1200.0 + return points * _sugar.get_screen_dpi() / 72.0 * screen_factor def grid_to_pixels(units): return units * gtk.gdk.screen_width() / 16