From a3602b6f37a65908515b124664fe334ba51feb90 Mon Sep 17 00:00:00 2001 From: Manuel QuiƱones Date: Mon, 15 Aug 2011 16:53:53 +0000 Subject: Initial stamp size set based on the display's DPI Fixes SL #2966 . Signed-off-by: Manuel QuiƱones --- (limited to 'Area.py') diff --git a/Area.py b/Area.py index 2e40d00..d953005 100644 --- a/Area.py +++ b/Area.py @@ -72,6 +72,8 @@ import pango from fill import fill from Desenho import Desenho from urlparse import urlparse +from sugar.graphics.style import zoom + ##Tools and events manipulation are handle with this class. @@ -139,7 +141,7 @@ class Area(gtk.DrawingArea): self.tool = { 'name': 'pencil', 'line size': 4, - 'stamp size': 20, + 'stamp size': self._get_stamp_size(), 'fill color': None, 'stroke color': None, 'line shape': 'circle', @@ -187,6 +189,10 @@ class Area(gtk.DrawingArea): self.x_cursor = 0 self.y_cursor = 0 + def _get_stamp_size(self): + """Set the stamp initial size, based on the display DPI.""" + return zoom(44) + def setup(self, width, height): """Configure the Area object.""" -- cgit v0.9.1