aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorBolian Yin <bolian.yin@sun.com>2003-12-10 12:00:24 +0800
committerBolian Yin <byin@src.gnome.org>2003-12-10 12:00:24 +0800
commitad454163140688485032c256a447fde8089b7e6b (patch)
treebcf3dd7a09824544b7be9ce37174361b7b49ca22 /calendar
parentfa5a7a0472cf4153318c30ab84524529e2d63afe (diff)
downloadgsoc2013-evolution-ad454163140688485032c256a447fde8089b7e6b.tar
gsoc2013-evolution-ad454163140688485032c256a447fde8089b7e6b.tar.gz
gsoc2013-evolution-ad454163140688485032c256a447fde8089b7e6b.tar.bz2
gsoc2013-evolution-ad454163140688485032c256a447fde8089b7e6b.tar.lz
gsoc2013-evolution-ad454163140688485032c256a447fde8089b7e6b.tar.xz
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')
-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;
}