diff options
author | Matt Wilson <msw@redhat.com> | 2000-02-15 16:45:45 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-02-15 16:45:45 +0000 |
commit | 9eb6aeb711529fedd30b5704e4e0b825e25d5263 (patch) | |
tree | 952eedb57c7391122fd21ef2c80c50589ee6cec8 /textw | |
parent | 3a1b4998a066dade8a991c795559c3dcf79a9bd1 (diff) | |
download | anaconda-9eb6aeb711529fedd30b5704e4e0b825e25d5263.tar.gz anaconda-9eb6aeb711529fedd30b5704e4e0b825e25d5263.tar.xz anaconda-9eb6aeb711529fedd30b5704e4e0b825e25d5263.zip |
fixed initial time setting
Diffstat (limited to 'textw')
-rw-r--r-- | textw/timezone.py | 5 |
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" |