summaryrefslogtreecommitdiffstats
path: root/rescue.py
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2010-05-06 10:46:28 -1000
committerDavid Cantrell <dcantrell@redhat.com>2010-05-06 11:27:03 -1000
commitc4996f4c928b97975fd11686db69e806ef738ff9 (patch)
treef968a5c5098936f4dbaffd318929edf50657e2e3 /rescue.py
parent0433fb89bb876961ebb38efc184dc4e88d32093d (diff)
downloadanaconda-c4996f4c928b97975fd11686db69e806ef738ff9.tar.gz
anaconda-c4996f4c928b97975fd11686db69e806ef738ff9.tar.xz
anaconda-c4996f4c928b97975fd11686db69e806ef738ff9.zip
Expand the details pane when showing unformatted DASDs (#580463)
We are using DetailMessageWindow. Make sure the details are expanded by default when showing unformatted DASDs. Other uses of this dialog (e.g., traceback) do not want to have the details expanded by default, so keep it False unless the use passes the expanded=True parameter.
Diffstat (limited to 'rescue.py')
-rw-r--r--rescue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue.py b/rescue.py
index 8f6c95670..e0bd17c0a 100644
--- a/rescue.py
+++ b/rescue.py
@@ -53,7 +53,7 @@ class RescueInterface(InstallInterfaceBase):
def detailedMessageWindow(self, title, text, longText=None, type="ok",
default=None, custom_icon=None,
- custom_buttons=[]):
+ custom_buttons=[], expanded=False):
return self.messageWindow(title, text, type, default, custom_icon,
custom_buttons)