aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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: