summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorpnfisher <pnfisher>1999-08-23 03:48:52 +0000
committerpnfisher <pnfisher>1999-08-23 03:48:52 +0000
commitfdc9d451357170a1abedfece72543740c82c3f6f (patch)
treebfc79c6a2d3d5fa549a961909e0f2d2f2d0520f0 /iw
parent2cc9ecf5eabe8cae911c5ac5ab2a568761daa035 (diff)
downloadanaconda-fdc9d451357170a1abedfece72543740c82c3f6f.tar.gz
anaconda-fdc9d451357170a1abedfece72543740c82c3f6f.tar.xz
anaconda-fdc9d451357170a1abedfece72543740c82c3f6f.zip
threads_leave/enter around upgradeFindPackages.
Diffstat (limited to 'iw')
-rw-r--r--iw/examine.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/iw/examine.py b/iw/examine.py
index ab07a9f97..87a55e2f7 100644
--- a/iw/examine.py
+++ b/iw/examine.py
@@ -13,7 +13,10 @@ class UpgradeExamineWindow (InstallWindow):
self.root = part
def getNext (self):
+ threads_leave ()
self.todo.upgradeFindPackages (self.root)
+ threads_enter ()
+
if self.individualPackages.get_active ():
return IndividualPackageSelectionWindow
return None
@@ -23,7 +26,7 @@ class UpgradeExamineWindow (InstallWindow):
parts = self.todo.upgradeFindRoot ()
threads_enter ()
- box = GtkHBox (FALSE)
+ box = GtkVBox (FALSE)
if not parts:
box.pack_start (GtkLabel ("You don't have any Linux partitions.\n You can't upgrade this sytem!"),
FALSE)
@@ -38,10 +41,12 @@ class UpgradeExamineWindow (InstallWindow):
box.pack_start (group, FALSE)
sw = GtkScrolledWindow ()
+ sw.set_border_width (5)
+ sw.set_policy (POLICY_AUTOMATIC, POLICY_AUTOMATIC)
sw.add_with_viewport (box)
vbox = GtkVBox (FALSE, 5)
- self.individualPackages = GtkCheckButton ("Customized packages to be upgraded")
+ self.individualPackages = GtkCheckButton ("Customize packages to be upgraded")
self.individualPackages.set_active (FALSE)
align = GtkAlignment (0.5, 0.5)
align.add (self.individualPackages)