From a44bdf24e518e5287ee0d1e7e8fee974616b9d16 Mon Sep 17 00:00:00 2001 From: Wade Brainerd Date: Thu, 17 Sep 2009 04:33:03 +0000 Subject: Font tweaks. --- diff --git a/TODO b/TODO index 5359ddd..cc9135e 100644 --- a/TODO +++ b/TODO @@ -9,6 +9,7 @@ Lesson Editor - Import and export from JSON data in Journal - Graphical lesson builder + Automatic step and wordlist generation. ++ Balloon game options: # of balloons, balloon speed, time between balloons. First Release + Export PDF of lesson history and progress. diff --git a/lessonscreen.py b/lessonscreen.py index 5ae66fd..f8c0b0d 100644 --- a/lessonscreen.py +++ b/lessonscreen.py @@ -45,7 +45,7 @@ class LessonScreen(gtk.VBox): # Build the user interface. title = gtk.Label() - title.set_markup("" + lesson['name'] + "") + title.set_markup("" + lesson['name'] + "") title.set_alignment(1.0, 0.0) stoplabel = gtk.Label(_('Go Back')) @@ -71,13 +71,13 @@ class LessonScreen(gtk.VBox): # Set up font styles. self.tagtable = gtk.TextTagTable() instructions_tag = gtk.TextTag('instructions') - instructions_tag.props.size = 9000 + instructions_tag.props.size = 10000 instructions_tag.props.justification = gtk.JUSTIFY_CENTER self.tagtable.add(instructions_tag) text_tag = gtk.TextTag('text') text_tag.props.family = 'Monospace' - text_tag.props.size = 9000 + text_tag.props.size = 10000 self.tagtable.add(text_tag) spacer_tag = gtk.TextTag('spacer') @@ -90,13 +90,13 @@ class LessonScreen(gtk.VBox): correct_copy_tag = gtk.TextTag('correct-copy') correct_copy_tag.props.family = 'Monospace' - correct_copy_tag.props.size = 9000 + correct_copy_tag.props.size = 10000 correct_copy_tag.props.foreground = '#0000ff' self.tagtable.add(correct_copy_tag) incorrect_copy_tag = gtk.TextTag('incorrect-copy') incorrect_copy_tag.props.family = 'Monospace' - incorrect_copy_tag.props.size = 9000 + incorrect_copy_tag.props.size = 10000 incorrect_copy_tag.props.foreground = '#ff0000' self.tagtable.add(incorrect_copy_tag) -- cgit v0.9.1