From 6b848780c91fe00ddb83ced734d0b021eaa4e360 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Wed, 27 Apr 2005 22:42:25 +0000 Subject: 2005-04-27 Jeremy Katz * text.py (InstallInterface.messageWindow): Properly return the idx of the return on a custom messageWindow * image.py (presentRequiredMediaMessage): Add back button for required media message (#114770) * textw/confirm_text.py (BeginUpgradeWindow.__call__): Likewise. (BeginInstallWindow.__call__): Likewise. * iw/confirm_gui.py (UpgradeConfirmWindow.getNext) (InstallConfirmWindow.getNext): Likewise. --- image.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'image.py') diff --git a/image.py b/image.py index 0117f51b6..fc9f45cb5 100644 --- a/image.py +++ b/image.py @@ -44,7 +44,7 @@ else: def presentRequiredMediaMessage(intf, grpset): reqcds = [] for hdr in grpset.hdrlist.values(): - if not hdr.isSelected(): + if not hdr.isSelected(): continue elif hdr[1000002] not in reqcds: reqcds.append(hdr[1000002]) @@ -93,7 +93,7 @@ def presentRequiredMediaMessage(intf, grpset): "the installation and reboot please " "select \"Reboot\".") % (reqcdstr,), type="custom", custom_icon="warning", - custom_buttons=[_("_Reboot"), _("_Continue")]) + custom_buttons=[_("_Reboot"), _("_Back"), _("_Continue")]) -- cgit