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

Samantha N. Bueno sbueno+anaconda at redhat.com
Fri Oct 10 12:03:53 UTC 2014


On Fri, Oct 10, 2014 at 01:52:02PM +0200, Vratislav Podzimek wrote:
> These go lost with the commit e9cbca2eab655475195653850f4b6cc9792b7af2.

Ack.

> 
> 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
> 
> _______________________________________________
> anaconda-patches mailing list
> anaconda-patches at lists.fedorahosted.org
> https://lists.fedorahosted.org/mailman/listinfo/anaconda-patches


More information about the anaconda-patches mailing list