From 67c9268a753f4e73ddc480462633b03ee28f9397 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Thu, 15 Feb 2007 18:55:32 +0100 Subject: [PATCH] Take in account screen size --- sugar/graphics/units.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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