diff options
author | Matt Wilson <msw@redhat.com> | 2001-03-26 18:12:01 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-03-26 18:12:01 +0000 |
commit | a2d28cb8bd77370ab5ceaefc27159920cc223a3c (patch) | |
tree | 5e84345aa4f16c671105f21ed4342cf395896fa5 /iw | |
parent | 9a46e0e8d70571e7011052acc57573be58d2fc98 (diff) | |
download | anaconda-a2d28cb8bd77370ab5ceaefc27159920cc223a3c.tar.gz anaconda-a2d28cb8bd77370ab5ceaefc27159920cc223a3c.tar.xz anaconda-a2d28cb8bd77370ab5ceaefc27159920cc223a3c.zip |
gui.py: possible fix for #33103: reset the frame's label always
fstab.py: we already have the intf's progressWindow stored in self,
don't require it to be passed in
todo.py: fix the call to fstab.turnOnSwap to use the new method
iw/rootpartition_gui.py: ditto. why was it passing a waitwindow, anyway?!
textw/partitioning_text.py: ditto.
Diffstat (limited to 'iw')
-rw-r--r-- | iw/rootpartition_gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/rootpartition_gui.py b/iw/rootpartition_gui.py index 1385377ec..77ceeccbe 100644 --- a/iw/rootpartition_gui.py +++ b/iw/rootpartition_gui.py @@ -59,7 +59,7 @@ class PartitionWindow (InstallWindow): return 0 self.todo.fstab.savePartitions() - self.todo.fstab.turnOnSwap(self.todo.intf.waitWindow) + self.todo.fstab.turnOnSwap(self.todo.instPath) self.todo.ddruidAlreadySaved = 1 PartitionWindow.swapon = 1 |