From d88eedbc27caca3a19d2e2b6fa25479d16988168 Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Sat, 15 Mar 2014 19:57:58 +0000 Subject: [PATCH] 7536: Fix bug introduced with new column order --- gramps/plugins/view/eventview.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gramps/plugins/view/eventview.py b/gramps/plugins/view/eventview.py index bbec08660..0b0b97134 100644 --- a/gramps/plugins/view/eventview.py +++ b/gramps/plugins/view/eventview.py @@ -94,8 +94,8 @@ class EventView(ListView): ('columns.visible', [COL_TYPE, COL_PARTIC, COL_DATE, COL_PLACE, COL_DESCR, COL_ID]), ('columns.rank', [COL_TYPE, COL_PARTIC, COL_DATE, COL_PLACE, COL_DESCR, - COL_ID, COL_CHAN]), - ('columns.size', [100, 230, 150, 200, 100, 75, 100]) + COL_ID, COL_PRIV, COL_CHAN]), + ('columns.size', [100, 230, 150, 200, 100, 75, 40, 100]) ) ADD_MSG = _("Add a new event") EDIT_MSG = _("Edit the selected event")