summaryrefslogtreecommitdiffstats
path: root/textw/silo_text.py
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2000-05-02 13:32:50 +0000
committerErik Troan <ewt@redhat.com>2000-05-02 13:32:50 +0000
commit256aca1d2a0c7725f3e363bac3ad9ec0b3d44669 (patch)
tree62434240b26fe5793b93085798a2689c4fa7026d /textw/silo_text.py
parent0c9de351ad920e3a856e1e317f9746f7e79973f4 (diff)
downloadanaconda-256aca1d2a0c7725f3e363bac3ad9ec0b3d44669.tar.gz
anaconda-256aca1d2a0c7725f3e363bac3ad9ec0b3d44669.tar.xz
anaconda-256aca1d2a0c7725f3e363bac3ad9ec0b3d44669.zip
text mode help nearly works
Diffstat (limited to 'textw/silo_text.py')
-rw-r--r--textw/silo_text.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/textw/silo_text.py b/textw/silo_text.py
index a74173974..8fe6f2792 100644
--- a/textw/silo_text.py
+++ b/textw/silo_text.py
@@ -25,7 +25,7 @@ class SiloAppendWindow:
buttons = ButtonBar(screen, [(_("OK"), "ok"), (_("Skip"), "skip"),
(_("Back"), "back") ] )
- grid = GridForm(screen, _("SILO Configuration"), 1, 3)
+ grid = GridForm(screenHelp, _("SILO Configuration"), 1, 3)
grid.add(t, 0, 0)
grid.add(entry, 0, 1, padding = (0, 0, 0, 1))
grid.add(buttons, 0, 2, growx = 1)
@@ -97,7 +97,7 @@ class SiloWindow:
bb = ButtonBar (screen, ((_("OK"), "ok"), (_("Back"), "back")))
- g = GridForm (screen, _("SILO Configuration"), 1, 8)
+ g = GridFormHelp (screen, _("SILO Configuration"), "silowin", 1, 8)
g.add (Label (_("Where do you want to install the bootloader?")), 0, 0)
g.add (rc1, 0, 1)
@@ -140,7 +140,7 @@ class SiloImagesWindow:
subgrid.setField(bootLabel, 0, 1, anchorLeft = 1)
subgrid.setField(newLabel, 1, 1, padding = (1, 0, 0, 0), anchorLeft = 1)
- g = GridForm(screen, _("Edit Boot Label"), 1, 2)
+ g = GridFormHelp(screen, _("Edit Boot Label"), "bootlabel", 1, 2)
g.add(subgrid, 0, 0, padding = (0, 0, 0, 1))
g.add(buttons, 0, 1, growx = 1)
@@ -210,7 +210,7 @@ class SiloImagesWindow:
"and what label you want to use for each of them."))
title = _("SILO Configuration")
- g = GridForm(screen, title, 1, 4)
+ g = GridFormHelp(screen, title, "siloimages", 1, 4)
g.add(text, 0, 0, anchorLeft = 1)
g.add(listboxLabel, 0, 1, padding = (0, 1, 0, 0), anchorLeft = 1)
g.add(listbox, 0, 2, padding = (0, 0, 0, 1), anchorLeft = 1)