aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiktor w brodlo <wiktor@brodlo.net>2011-07-21 15:21:18 +0000
committerwiktor w brodlo <wiktor@brodlo.net>2011-07-21 15:21:18 +0000
commit48802e4c0be34f8f4167c91a857c240ae7251047 (patch)
treea2c3ab9ad423c5678a47d3aedb9e9092a8517ed3
parentiw/welcome_gui.py: GTK+ labels are retarded https://bugzilla.gnome.org/show_b... (diff)
downloadanaconda-48802e4c0be34f8f4167c91a857c240ae7251047.tar.gz
anaconda-48802e4c0be34f8f4167c91a857c240ae7251047.tar.bz2
anaconda-48802e4c0be34f8f4167c91a857c240ae7251047.zip
iw/welcome_gui.py: use <big> markup
-rw-r--r--iw/welcome_gui.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/iw/welcome_gui.py b/iw/welcome_gui.py
index 2950b19..df4ce27 100644
--- a/iw/welcome_gui.py
+++ b/iw/welcome_gui.py
@@ -110,8 +110,7 @@ environment installed on your new system. "),
(xml, align) = gui.getGladeWidget("welcome.glade", "welcome_align")
title_ = xml.get_widget("title")
text_ = xml.get_widget("text")
- title_.set_markup("<span size=\"large\">%s</span>")
- title_.set_text(_("Chapter %i: %s") % (chapter, title))
+ title_.set_markup("<big>%s</big>" % (_("Chapter %i: %s") % (chapter, title)))
text_.set_text(text)
return align