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/gui/weekday-picker.c | |
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/gui/weekday-picker.c')
-rw-r--r-- | calendar/gui/weekday-picker.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; |