diff options
author | Bolian Yin <bolian.yin@sun.com> | 2003-12-10 12:00:24 +0800 |
---|---|---|
committer | Bolian Yin <byin@src.gnome.org> | 2003-12-10 12:00:24 +0800 |
commit | ad454163140688485032c256a447fde8089b7e6b (patch) | |
tree | bcf3dd7a09824544b7be9ce37174361b7b49ca22 /calendar/gui/e-week-view.c | |
parent | fa5a7a0472cf4153318c30ab84524529e2d63afe (diff) | |
download | gsoc2013-evolution-ad454163140688485032c256a447fde8089b7e6b.tar.gz gsoc2013-evolution-ad454163140688485032c256a447fde8089b7e6b.tar.zst gsoc2013-evolution-ad454163140688485032c256a447fde8089b7e6b.zip |
*gui/e-week-view.c: Fix a event/jump button tabbing bug
2003-12-10 Bolian Yin <bolian.yin@sun.com>
*gui/e-week-view.c: Fix a event/jump button tabbing bug
svn path=/trunk/; revision=23903
Diffstat (limited to 'calendar/gui/e-week-view.c')
-rw-r--r-- | calendar/gui/e-week-view.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c index d73ad7c277..c58c1dcb1b 100644 --- a/calendar/gui/e-week-view.c +++ b/calendar/gui/e-week-view.c @@ -1033,6 +1033,9 @@ e_week_view_focus (GtkWidget *widget, GtkDirectionType direction) new_event_num, new_span_num, NULL); + last_focus_event_num = new_event_num; + last_focus_span_num = new_span_num; + if (editable) break; else { @@ -1059,8 +1062,6 @@ e_week_view_focus (GtkWidget *widget, GtkDirectionType direction) return TRUE; } } - last_focus_event_num = new_event_num; - last_focus_span_num = new_span_num; } return editable; } |