diff options
-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 |