Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Drake <dsd@laptop.org>2009-12-01 17:43:37 (GMT)
committer Daniel Drake <dsd@laptop.org>2009-12-01 17:43:37 (GMT)
commit618df4e1770d0a75709c22dc1a83942ea3d7c8aa (patch)
treec5953cbbeeb9e3c33cf391609216e404c67f5881
parent634b2fcee0b05e0bb8af9616f12ec60282622503 (diff)
Fix bold font style
Small error in my last commit.
-rw-r--r--src/sugar/graphics/style.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sugar/graphics/style.py b/src/sugar/graphics/style.py
index ccc6912..929b78e 100644
--- a/src/sugar/graphics/style.py
+++ b/src/sugar/graphics/style.py
@@ -121,7 +121,7 @@ FONT_SIZE = client.get_float('/desktop/sugar/font/default_size')
FONT_FACE = client.get_string('/desktop/sugar/font/default_face')
FONT_NORMAL = Font('%s %f' % (FONT_FACE, FONT_SIZE))
-FONT_BOLD = Font('%s %f' % (FONT_FACE, FONT_SIZE))
+FONT_BOLD = Font('%s bold %f' % (FONT_FACE, FONT_SIZE))
FONT_NORMAL_H = zoom(24)
FONT_BOLD_H = zoom(24)