diff options
author | wiktor w brodlo <wiktor@brodlo.net> | 2011-07-07 18:51:03 +0000 |
---|---|---|
committer | wiktor w brodlo <wiktor@brodlo.net> | 2011-07-07 18:51:03 +0000 |
commit | 086c91213bae72fc46d93b683668763fd6a0de4c (patch) | |
tree | 679d9ed8e4dcd22f86ae0721023049f4332c4e50 /iw | |
parent | Store sync mirrors (diff) | |
download | anaconda-086c91213bae72fc46d93b683668763fd6a0de4c.tar.gz anaconda-086c91213bae72fc46d93b683668763fd6a0de4c.tar.bz2 anaconda-086c91213bae72fc46d93b683668763fd6a0de4c.zip |
Stare systools settings
Diffstat (limited to 'iw')
-rw-r--r-- | iw/systools_gui.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/iw/systools_gui.py b/iw/systools_gui.py index 1bedb1d..d33a38a 100644 --- a/iw/systools_gui.py +++ b/iw/systools_gui.py @@ -35,6 +35,8 @@ _ = lambda x: gettext.ldgettext("anaconda", x) class SystoolsWindow(InstallWindow): def getNext(self): + self.anaconda.cron = self.cron.get_active_text() + self.anaconda.syslog = self.syslog.get_active_text() return None def getScreen(self, anaconda): @@ -43,5 +45,8 @@ class SystoolsWindow(InstallWindow): (self.xml, self.align) = gui.getGladeWidget("systools.glade", "systools_align") + self.cron = self.xml.get_widget("cron") + self.syslog = self.xml.get_widget("syslog") + return self.align |