summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2000-02-15 16:45:45 +0000
committerMatt Wilson <msw@redhat.com>2000-02-15 16:45:45 +0000
commit9eb6aeb711529fedd30b5704e4e0b825e25d5263 (patch)
tree952eedb57c7391122fd21ef2c80c50589ee6cec8 /textw
parent3a1b4998a066dade8a991c795559c3dcf79a9bd1 (diff)
downloadanaconda-9eb6aeb711529fedd30b5704e4e0b825e25d5263.tar.gz
anaconda-9eb6aeb711529fedd30b5704e4e0b825e25d5263.tar.xz
anaconda-9eb6aeb711529fedd30b5704e4e0b825e25d5263.zip
fixed initial time setting
Diffstat (limited to 'textw')
-rw-r--r--textw/timezone.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/textw/timezone.py b/textw/timezone.py
index e58fe9092..f90bc847b 100644
--- a/textw/timezone.py
+++ b/textw/timezone.py
@@ -76,7 +76,6 @@ class TimezoneWindow:
self.l.setCurrent(default)
self.l.setCallback(self.updateClock)
- self.updateClock()
self.c = Checkbox(_("Hardware clock set to GMT?"), isOn = asUtc)
self.c.setCallback(self.updateSysClock)
@@ -87,6 +86,10 @@ class TimezoneWindow:
self.g.add(self.c, 0, 2, padding = (0, 1, 0, 1), anchorLeft = 1)
self.g.add(self.l, 0, 3, padding = (0, 0, 0, 1))
self.g.add(bb, 0, 4, growx = 1)
+
+ self.updateClock()
+ self.updateSysClock()
+
self.g.setTimer(500)
result = "TIMER"