diff options
author | Federico Mena Quintero <federico@ximian.com> | 2001-01-20 23:36:39 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2001-01-20 23:36:39 +0800 |
commit | 4262a5d52e50d7bbdb82410b938c82b8a1f1ec7b (patch) | |
tree | 60278d7fa96cc17108eaa18e92b9f3a06b56842a /calendar | |
parent | f741fbe53dbb2cf68e2c9347ac910413f9a50ecd (diff) | |
download | gsoc2013-evolution-4262a5d52e50d7bbdb82410b938c82b8a1f1ec7b.tar gsoc2013-evolution-4262a5d52e50d7bbdb82410b938c82b8a1f1ec7b.tar.gz gsoc2013-evolution-4262a5d52e50d7bbdb82410b938c82b8a1f1ec7b.tar.bz2 gsoc2013-evolution-4262a5d52e50d7bbdb82410b938c82b8a1f1ec7b.tar.lz gsoc2013-evolution-4262a5d52e50d7bbdb82410b938c82b8a1f1ec7b.tar.xz gsoc2013-evolution-4262a5d52e50d7bbdb82410b938c82b8a1f1ec7b.tar.zst gsoc2013-evolution-4262a5d52e50d7bbdb82410b938c82b8a1f1ec7b.zip |
Unset the GTK_CAN_FOCUS flag on the weekday picker. This will do until it
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.
svn path=/trunk/; revision=7664
Diffstat (limited to 'calendar')
-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; |