summaryrefslogtreecommitdiffstats
path: root/pyanaconda
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2012-11-19 14:06:01 -0500
committerChris Lumens <clumens@redhat.com>2012-11-20 16:22:53 -0500
commitab9d579a27cb9f102b5ea9e215c70334dc5e88fc (patch)
treeb902a1125753a7feef5eaeb3418a3f4e0fb06d90 /pyanaconda
parentbfddb0a9eff17701cbb120f4da134a4832e62c3a (diff)
downloadanaconda-ab9d579a27cb9f102b5ea9e215c70334dc5e88fc.tar.gz
anaconda-ab9d579a27cb9f102b5ea9e215c70334dc5e88fc.tar.xz
anaconda-ab9d579a27cb9f102b5ea9e215c70334dc5e88fc.zip
On live installs, the progress hub should have a Quit button (#854904).
Live environments have their own way of rebooting, and anaconda doesn't need to interfere with that.
Diffstat (limited to 'pyanaconda')
-rw-r--r--pyanaconda/ui/gui/hubs/progress.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/pyanaconda/ui/gui/hubs/progress.py b/pyanaconda/ui/gui/hubs/progress.py
index d3b6b4147..c924695c4 100644
--- a/pyanaconda/ui/gui/hubs/progress.py
+++ b/pyanaconda/ui/gui/hubs/progress.py
@@ -174,6 +174,12 @@ class ProgressHub(Hub):
def initialize(self):
Hub.initialize(self)
+ if flags.livecdInstall:
+ continueText = self.builder.get_object("rebootLabel")
+ continueText.set_text("%s is now successfully installed on your system and ready"
+ "for you to use! When you are ready, reboot your system to start using it!")
+ self.continueButton.set_label("_Quit")
+
self._progressBar = self.builder.get_object("progressBar")
self._progressLabel = self.builder.get_object("progressLabel")
self._progressNotebook = self.builder.get_object("progressNotebook")