aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2009-02-25 18:58:26 +0800
committerMilan Crha <mcrha@src.gnome.org>2009-02-25 18:58:26 +0800
commitd95589c946716d72ccfb0c6d79233bb47631e883 (patch)
treeef784d8276a0a39bb05fd13e04d55aafae2bfcd4
parent408ed636718294b0c0676bc6bdb690811c4793ac (diff)
downloadgsoc2013-evolution-d95589c946716d72ccfb0c6d79233bb47631e883.tar
gsoc2013-evolution-d95589c946716d72ccfb0c6d79233bb47631e883.tar.gz
gsoc2013-evolution-d95589c946716d72ccfb0c6d79233bb47631e883.tar.bz2
gsoc2013-evolution-d95589c946716d72ccfb0c6d79233bb47631e883.tar.lz
gsoc2013-evolution-d95589c946716d72ccfb0c6d79233bb47631e883.tar.xz
gsoc2013-evolution-d95589c946716d72ccfb0c6d79233bb47631e883.tar.zst
gsoc2013-evolution-d95589c946716d72ccfb0c6d79233bb47631e883.zip
** Fix for bug #561465
2009-02-25 Milan Crha <mcrha@redhat.com> ** Fix for bug #561465 * gui/e-meeting-list-view.c: (build_table): Expand 'Attendee' column instead of the last. svn path=/trunk/; revision=37327
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/gui/e-meeting-list-view.c1
2 files changed, 8 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 2ec439b641..536b9da033 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,3 +1,10 @@
+2009-02-25 Milan Crha <mcrha@redhat.com>
+
+ ** Fix for bug #561465
+
+ * gui/e-meeting-list-view.c: (build_table):
+ Expand 'Attendee' column instead of the last.
+
2009-02-23 Milan Crha <mcrha@redhat.com>
** Fix for bug #572543
diff --git a/calendar/gui/e-meeting-list-view.c b/calendar/gui/e-meeting-list-view.c
index 78f87c23f5..aea75d4bd7 100644
--- a/calendar/gui/e-meeting-list-view.c
+++ b/calendar/gui/e-meeting-list-view.c
@@ -552,6 +552,7 @@ build_table (EMeetingListView *lview)
col = gtk_tree_view_get_column (view, pos -1);
gtk_tree_view_column_set_resizable (col, TRUE);
gtk_tree_view_column_set_reorderable(col, TRUE);
+ gtk_tree_view_column_set_expand (col, TRUE);
g_object_set (col, "min-width", 50, NULL);
g_object_set_data (G_OBJECT (col), "mtg-store-col", GINT_TO_POINTER (E_MEETING_STORE_ATTENDEE_COL));
g_signal_connect (renderer, "cell_edited", G_CALLBACK (attendee_edited_cb), view);