Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorflavio <fdanesse@gmail.com>2013-08-13 21:46:05 (GMT)
committer flavio <fdanesse@gmail.com>2013-08-13 21:46:05 (GMT)
commitb71d2ee797aabda94a81dfb304e66d48f367a0df (patch)
treef6edcb9bc78d5fbc9dcb7da46e14e2f133c57293
parentf392590b3155fa5b693610f5541b1145e613f677 (diff)
Corregir formato en Títulos.
-rw-r--r--Widgets.py13
1 files changed, 9 insertions, 4 deletions
diff --git a/Widgets.py b/Widgets.py
index 39383d0..e959655 100644
--- a/Widgets.py
+++ b/Widgets.py
@@ -375,8 +375,10 @@ class OptionsCanvas(Gtk.Box):
mainbox = Gtk.VBox()
optionsbox.pack_start(mainbox, True, False, 0)
-
- mainbox.pack_start(Gtk.Label(_('Settings')), True, True, 10)
+
+ label = Gtk.Label()
+ label.set_markup('<big><b>%s</b></big>' % _('Settings'))
+ mainbox.pack_start(label, False, False, 10)
options_details_box = Gtk.VBox()
mainbox.pack_start(options_details_box, True, False, 10)
@@ -564,7 +566,9 @@ class LessonPlanCanvas(Gtk.Box):
poll_activity._current_view = 'lessonplan'
- self.pack_start(Gtk.Label(_('Lesson Plans')), False, False, 0)
+ label = Gtk.Label()
+ label.set_markup('<big><b>%s</b></big>' % _('Lesson Plans'))
+ self.pack_start(label, False, False, 10)
self.pack_start(LessonPlanWidget(), True, True, 0)
self.show_all()
@@ -627,7 +631,8 @@ class PollCanvas(Gtk.Box):
self._poll = poll
- self.cabecera = Gtk.Label(cabecera)
+ self.cabecera = Gtk.Label()
+ self.cabecera.set_markup('<big><b>%s</b></big>' % _(cabecera))
self.pack_start(self.cabecera, False, False, 10)
self.title = Gtk.Label(poll.title)