summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorpnfisher <pnfisher>1999-09-20 20:33:42 +0000
committerpnfisher <pnfisher>1999-09-20 20:33:42 +0000
commitb329cfccd3d205a704172b8bb351ded406922bfc (patch)
treed0143a2f0e271458feab5710ef8fc1b880df6605 /gui.py
parente362533d196dbbd390ed189c71d44a53810d88aa (diff)
downloadanaconda-b329cfccd3d205a704172b8bb351ded406922bfc.tar.gz
anaconda-b329cfccd3d205a704172b8bb351ded406922bfc.tar.xz
anaconda-b329cfccd3d205a704172b8bb351ded406922bfc.zip
Make sure html help screen stays white.
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gui.py b/gui.py
index 6736f8594..85ad41e1d 100755
--- a/gui.py
+++ b/gui.py
@@ -309,8 +309,9 @@ class InstallControlWindow (Thread):
self.bin.remove (self.installFrame)
self.table.attach (self.installFrame, 1, 3, 0, 1)
self.bin.add (self.table)
+ # fix to set the bgcolor to white (xmhtml sucks)
+ self.html.source ("<HTML><BODY BGCOLOR=white></BODY></HTML>")
self.html.source (self.currentScreen.getICS ().getHTML ())
-
self.hideHelpButton.show ()
self.showHelpButton.set_state (STATE_NORMAL)
self.hbox.pack_start (self.hideHelpButton, FALSE)