Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/graphics/roundbox.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar/graphics/roundbox.py')
-rw-r--r--sugar/graphics/roundbox.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/sugar/graphics/roundbox.py b/sugar/graphics/roundbox.py
index f1bc854..96a40d7 100644
--- a/sugar/graphics/roundbox.py
+++ b/sugar/graphics/roundbox.py
@@ -19,19 +19,18 @@ import math
import hippo
-from sugar.graphics import units
from sugar.graphics import style
class RoundBox(hippo.CanvasBox, hippo.CanvasItem):
__gtype_name__ = 'SugarRoundBox'
- _BORDER_DEFAULT = units.points_to_pixels(1.0)
+ _BORDER_DEFAULT = style.LINE_WIDTH
def __init__(self, **kwargs):
hippo.CanvasBox.__init__(self, **kwargs)
# TODO: we should calculate this value depending on the height of the box.
- self._radius = units.points_to_pixels(7)
+ self._radius = style.zoom(10)
self.props.orientation = hippo.ORIENTATION_HORIZONTAL
self.props.border = self._BORDER_DEFAULT