aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiktor w brodlo <wiktor@brodlo.net>2011-08-03 02:51:09 +0000
committerwiktor w brodlo <wiktor@brodlo.net>2011-08-03 02:51:09 +0000
commite2f859eff0a72d315f924e8c4438d0d7e6f452ec (patch)
tree2dc12ab93879baef0624a076dbe5ab2bc1da890f
parentiw/mirrorselect_gui.py: more typos (diff)
downloadanaconda-e2f859eff0a72d315f924e8c4438d0d7e6f452ec.tar.gz
anaconda-e2f859eff0a72d315f924e8c4438d0d7e6f452ec.tar.bz2
anaconda-e2f859eff0a72d315f924e8c4438d0d7e6f452ec.zip
Resize timezone widget, fix the treeview in mirrorselect
-rw-r--r--iw/mirrorselect-sync_gui.py4
-rw-r--r--iw/mirrorselect_gui.py4
-rw-r--r--iw/timezone_gui.py2
3 files changed, 7 insertions, 3 deletions
diff --git a/iw/mirrorselect-sync_gui.py b/iw/mirrorselect-sync_gui.py
index 9d07d53..c9bbbc4 100644
--- a/iw/mirrorselect-sync_gui.py
+++ b/iw/mirrorselect-sync_gui.py
@@ -39,7 +39,9 @@ class MirrorselectSyncWindow(InstallWindow):
def getNext(self):
for button in self.buttons:
if button.get_property("active"):
- self.anaconda.mirrors_sync.append(button.get_property("label"))
+ # For while the treeview is broken
+ #self.anaconda.mirrors_sync.append(button.get_property("label"))
+ self.anaconda.mirrors_sync.append("rsync://rsync.gentoo.org/gentoo-portage")
return None
def getScreen(self, anaconda):
diff --git a/iw/mirrorselect_gui.py b/iw/mirrorselect_gui.py
index d5aa6f5..64d536f 100644
--- a/iw/mirrorselect_gui.py
+++ b/iw/mirrorselect_gui.py
@@ -42,7 +42,9 @@ class MirrorselectWindow(InstallWindow):
def getNext(self):
for button in self.buttons:
if button.get_property("active"):
- self.anaconda.mirrors.append(button.get_property("label"))
+ # For while the treeview is broken
+ #self.anaconda.mirrors.append(button.get_property("label"))
+ self.anaconda.mirrors.append("http://mirrors.kernel.org/gentoo/")
return None
def getScreen(self, anaconda):
diff --git a/iw/timezone_gui.py b/iw/timezone_gui.py
index bfe8029..0e96069 100644
--- a/iw/timezone_gui.py
+++ b/iw/timezone_gui.py
@@ -80,7 +80,7 @@ class TimezoneWindow(InstallWindow):
ratio = float(p_w)/p_h
screen_x, screen_y = self.ics.cw.window.get_size()
screen_x -= 80
- screen_y -= 200
+ screen_y -= 300
p_w -= 80
if screen_x < p_w: