[master][PATCH] Connect signals to handlers for day/month/year changes

Vratislav Podzimek vpodzime at redhat.com
Fri Oct 10 11:52:02 UTC 2014


These go lost with the commit e9cbca2eab655475195653850f4b6cc9792b7af2.

Signed-off-by: Vratislav Podzimek <vpodzime at redhat.com>
---
 pyanaconda/ui/gui/spokes/datetime_spoke.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/pyanaconda/ui/gui/spokes/datetime_spoke.py b/pyanaconda/ui/gui/spokes/datetime_spoke.py
index dc6bea5..0ccc8ef 100644
--- a/pyanaconda/ui/gui/spokes/datetime_spoke.py
+++ b/pyanaconda/ui/gui/spokes/datetime_spoke.py
@@ -437,8 +437,11 @@ class DatetimeSpoke(FirstbootSpokeMixIn, NormalSpoke):
 
         # create widgets for displaying/configuring date
         day_box, self._dayCombo, day_label = _new_date_field_box(self._daysFilter)
+        self._dayCombo.connect("changed", self.on_day_changed)
         month_box, self._monthCombo, month_label = _new_date_field_box(self._monthsStore)
+        self._monthCombo.connect("changed", self.on_month_changed)
         year_box, self._yearCombo, year_label = _new_date_field_box(self._yearsStore)
+        self._yearCombo.connect("changed", self.on_year_changed)
 
         # get the right order for date widgets and respective formats and put
         # widgets in place
-- 
1.9.3



More information about the anaconda-patches mailing list