diff options
author | pnfisher <pnfisher> | 1999-09-20 20:33:42 +0000 |
---|---|---|
committer | pnfisher <pnfisher> | 1999-09-20 20:33:42 +0000 |
commit | b329cfccd3d205a704172b8bb351ded406922bfc (patch) | |
tree | d0143a2f0e271458feab5710ef8fc1b880df6605 | |
parent | e362533d196dbbd390ed189c71d44a53810d88aa (diff) | |
download | anaconda-b329cfccd3d205a704172b8bb351ded406922bfc.tar.gz anaconda-b329cfccd3d205a704172b8bb351ded406922bfc.tar.xz anaconda-b329cfccd3d205a704172b8bb351ded406922bfc.zip |
Make sure html help screen stays white.
-rwxr-xr-x | gui.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) |