Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Stone <michael@laptop.org>2011-01-08 06:31:08 (GMT)
committer Michael Stone <michael@laptop.org>2011-01-08 06:32:12 (GMT)
commitbaffb13cc033815237d29c068416d0b9885af556 (patch)
tree7c3f2e17486ce579cf6b8db0a7f4ae024ec01bcd
parente7a993728c5450a4b43dabe1fcc0a2c79136a814 (diff)
Use the older and more compatible gtk.Label color markup.
-rw-r--r--arithmetic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/arithmetic.py b/arithmetic.py
index 771f224..d978121 100644
--- a/arithmetic.py
+++ b/arithmetic.py
@@ -452,7 +452,7 @@ class ArithmeticActivity(groupthink.sugar_tools.GroupActivity):
if self.cloud.periodentry.get_text() != str(self.secondsleft):
self.cloud.periodentry.set_text(str(self.period))
- markup = "%s : <span weight=\"bold\" fgcolor=\"%s\">%s</span>" % (
+ markup = "%s : <span weight=\"bold\" color=\"%s\">%s</span>" % (
old_question,
old_answercorrect and "blue" or "black",
old_answer)