aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog4
-rw-r--r--calendar/gui/e-week-view.c5
2 files changed, 7 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index e31c1fd223..094d6f2003 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,7 @@
+2003-12-10 Bolian Yin <bolian.yin@sun.com>
+
+ *gui/e-week-view.c: Fix a event/jump button tabbing bug
+
2003-12-10 Harry Lu <harry.lu@sun.com>
Fix for bugzilla bug #51628.
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;
}