diff options
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/weekday-picker.c | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 059dc4cd02..507ac1c795 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2001-01-19 Federico Mena Quintero <federico@ximian.com> + + * gui/weekday-picker.c (weekday_picker_init): Unset the + GTK_CAN_FOCUS flag on the weekday picker. This will do until it + supports being used with the keyboard. + 2001-01-19 JP Rosevear <jpr@ximian.com> * cal-util/cal-component.c (cal_component_alarm_new): create a new diff --git a/calendar/gui/weekday-picker.c b/calendar/gui/weekday-picker.c index 7059b14133..3d19ac8b37 100644 --- a/calendar/gui/weekday-picker.c +++ b/calendar/gui/weekday-picker.c @@ -219,6 +219,8 @@ weekday_picker_init (WeekdayPicker *wp) { WeekdayPickerPrivate *priv; + GTK_WIDGET_UNSET_FLAGS (wp, GTK_CAN_FOCUS); + priv = g_new0 (WeekdayPickerPrivate, 1); wp->priv = priv; |