diff options
author | wiktor w brodlo <wiktor@brodlo.net> | 2011-07-21 14:19:18 +0000 |
---|---|---|
committer | wiktor w brodlo <wiktor@brodlo.net> | 2011-07-21 14:19:18 +0000 |
commit | 27b8fe776985122f8f918232ca8a5a54dac2ed31 (patch) | |
tree | a080edaefa0aa0a50ff6fb0404e4ed2995f85666 /iw | |
parent | dispatch.py: change the name of the welcome screen step (diff) | |
download | anaconda-27b8fe776985122f8f918232ca8a5a54dac2ed31.tar.gz anaconda-27b8fe776985122f8f918232ca8a5a54dac2ed31.tar.bz2 anaconda-27b8fe776985122f8f918232ca8a5a54dac2ed31.zip |
iw/welcome_gui.py: fix setting attributes
Diffstat (limited to 'iw')
-rw-r--r-- | iw/welcome_gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/welcome_gui.py b/iw/welcome_gui.py index 92f111d..bdeaf51 100644 --- a/iw/welcome_gui.py +++ b/iw/welcome_gui.py @@ -108,8 +108,8 @@ class WelcomeWindow (InstallWindow): title_ = xml.get_widget("title") text_ = xml.get_widget("text") title_.set_markup("<span style=\"font-size: 200%\">%s</span>") - title_.set_attribute("label", _("Chapter %i: %s") % (chapter, title)) - text_.set_attribute("text", text) + title_.set_text(_("Chapter %i: %s") % (chapter, title)) + text_.set_text(text) def getNext(self): |