summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-08-07 03:06:33 +0000
committerMatt Wilson <msw@redhat.com>1999-08-07 03:06:33 +0000
commit5c198114640db1191e4b501d828622e6b9bc90d6 (patch)
tree88626098eca1f9ba5e0fb942c252b90c8d2ccbf1 /gui.py
parent1c98f99db5dd38e8be6812f3c927bc8c28f46414 (diff)
downloadanaconda-5c198114640db1191e4b501d828622e6b9bc90d6.tar.gz
anaconda-5c198114640db1191e4b501d828622e6b9bc90d6.tar.xz
anaconda-5c198114640db1191e4b501d828622e6b9bc90d6.zip
writes changes to disks
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/gui.py b/gui.py
index 746ab2b2b..be44214a9 100755
--- a/gui.py
+++ b/gui.py
@@ -13,6 +13,7 @@ from iw.mouse import *
from iw.keyboard import *
import sys
import GdkImlib
+from gnomepyfsedit import fsedit
import isys
import sys
@@ -93,6 +94,9 @@ class InstallInterface:
import traceback
traceback.print_exception (type, value, tb)
+ def getDDruid (self, drives):
+ return fsedit (1, drives)
+
def run (self, todo):
start_new_thread (GtkMainThread ().run, ())
@@ -101,7 +105,7 @@ class InstallInterface:
windows = [WelcomeWindow, LanguageWindow, MouseWindow, KeyboardWindow, NetworkWindow, PartitionWindow,
PackageSelectionWindow, AuthWindow, AccountWindow, IndividualPackageSelectionWindow,
- InstallProgressWindow]
+ InstallProgressWindow, ConfirmPartitionWindow]
icw = InstallControlWindow (self, steps, windows, todo)