From 45fe8ea69e1bd98084d7916c434999cae4492522 Mon Sep 17 00:00:00 2001 From: Sam Manzi Date: Fri, 18 Oct 2019 14:19:42 +1100 Subject: [PATCH] Change Default Navigator views order * Reordered the categories in the Navigator so that List are grouped below and non list items are at the top. * This makes it easier for people to understand at a glance the difference between the top 4 categories [Dashboard] & [Programmed Views/Extensions] and those below eg. List. --- gramps/gen/config.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gramps/gen/config.py b/gramps/gen/config.py index 8a2ea79a3..582b2eb06 100644 --- a/gramps/gen/config.py +++ b/gramps/gen/config.py @@ -191,10 +191,11 @@ register('geography.use-keypad', True) # needed), for instance to four 'interface.clipboard' variables -- # so do a recursive grep for "setup_configs" to see all the (base) names register('interface.dont-ask', False) +#Default Navigator views (sets order shown) register('interface.view-categories', - ["Dashboard", "People", "Relationships", "Families", - "Ancestry", "Events", "Places", "Geography", "Sources", - "Citations", "Repositories", "Media", "Notes"]) + ["Relationships", "Dashboard", "Ancestry","Geography", + "People", "Families", "Events", "Places", "Notes", + "Media", "Citations", "Sources", "Repositories",]) register('interface.filter', False) register('interface.fullscreen', False) register('interface.grampletbar-close', False)