summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2003-02-12 04:20:24 +0000
committerMatt Wilson <msw@redhat.com>2003-02-12 04:20:24 +0000
commit4d9a77b78d2b6d031e9983d1b41687c950a6340e (patch)
tree6d6c8a4028176b50566b60e3eac763f922689f5a
parentb2e6a8d2c1879efee6b8925f38b02f653f04c896 (diff)
downloadanaconda-4d9a77b78d2b6d031e9983d1b41687c950a6340e.tar.gz
anaconda-4d9a77b78d2b6d031e9983d1b41687c950a6340e.tar.xz
anaconda-4d9a77b78d2b6d031e9983d1b41687c950a6340e.zip
make back work from customize package selection (#80679)
-rw-r--r--textw/desktop_choice_text.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/textw/desktop_choice_text.py b/textw/desktop_choice_text.py
index b46c6fcf4..bc191ce29 100644
--- a/textw/desktop_choice_text.py
+++ b/textw/desktop_choice_text.py
@@ -40,7 +40,8 @@ class DesktopChoiceWindow:
toplevel.add (customize, 0, 3, (0, 0, 0, 1))
toplevel.add (bb, 0, 4, (0, 0, 0, 0), growx = 1)
- rc = toplevel.run()
+ result = toplevel.run()
+ rc = bb.buttonPressed (result)
if rc == TEXT_BACK_CHECK:
screen.popWindow()
return INSTALL_BACK