summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
Diffstat (limited to 'iw')
-rw-r--r--iw/package_gui.py2
-rw-r--r--iw/partition_dialog_gui.py1
-rw-r--r--iw/partition_gui.py2
-rw-r--r--iw/xconfig_gui.py3
4 files changed, 5 insertions, 3 deletions
diff --git a/iw/package_gui.py b/iw/package_gui.py
index 30e7d8c36..9468e3056 100644
--- a/iw/package_gui.py
+++ b/iw/package_gui.py
@@ -579,7 +579,7 @@ class PackageSelectionWindow (InstallWindow):
continue
if newstate:
- sel = c.isSelected()
+ sel = c.isSelected(justManual = 1)
# print "saving ",c.name," at state ",sel
if savestate:
self.savedStateDict[c.id] = sel
diff --git a/iw/partition_dialog_gui.py b/iw/partition_dialog_gui.py
index 91490875b..3edd3548d 100644
--- a/iw/partition_dialog_gui.py
+++ b/iw/partition_dialog_gui.py
@@ -164,6 +164,7 @@ class PartitionEditor:
else:
request.start = self.startcylspin.get_value_as_int()
request.end = self.endcylspin.get_value_as_int()
+ request.primary = primonly
if request.end <= request.start:
self.intf.messageWindow(_("Error With Request"),
diff --git a/iw/partition_gui.py b/iw/partition_gui.py
index 9bd537481..0a9cf8c3f 100644
--- a/iw/partition_gui.py
+++ b/iw/partition_gui.py
@@ -1184,7 +1184,7 @@ class PartitionWindow(InstallWindow):
def makeLvmCB(self, widget):
if (not fileSystemTypeGet('physical volume (LVM)').isSupported() or
- lvm.lvmDevicePresent == 0):
+ not lvm.has_lvm()):
self.intf.messageWindow(_("Not supported"),
_("LVM is NOT supported on "
"this platform."), type="ok",
diff --git a/iw/xconfig_gui.py b/iw/xconfig_gui.py
index 7917a0121..9e4999ccc 100644
--- a/iw/xconfig_gui.py
+++ b/iw/xconfig_gui.py
@@ -653,6 +653,7 @@ class MonitorWindow (InstallWindow):
keys = monitorslist.keys ()
keys.sort ()
+ # treat Generic monitors special
idx = 0
for man in ["Generic LCD Display", "Generic CRT Display", "Generic"]:
if man in keys:
@@ -697,7 +698,7 @@ class MonitorWindow (InstallWindow):
toplevels[man] = self.monitorstore.append(None)
self.monitorstore.set_value(toplevels[man], 0, man)
-
+
previous_monitor = ""
for amonitor in models:
if previous_monitor != "":