From 7ba58f0d670f55536aa8f560a7affdaa13494634 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 19 May 2017 10:41:19 +0530 Subject: [PATCH] Move formats down in the default field display order for the Book details panel --- src/calibre/db/backend.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/db/backend.py b/src/calibre/db/backend.py index 42e2f9d53f..da669a16cb 100644 --- a/src/calibre/db/backend.py +++ b/src/calibre/db/backend.py @@ -464,8 +464,8 @@ class DB(object): defs['similar_series_search_key'] = 'series' defs['similar_series_match_kind'] = 'match_any' defs['book_display_fields'] = [ - ('title', False), ('authors', True), ('formats', True), - ('series', True), ('identifiers', True), ('tags', True), + ('title', False), ('authors', True), ('series', True), + ('identifiers', True), ('tags', True), ('formats', True), ('path', True), ('publisher', False), ('rating', False), ('author_sort', False), ('sort', False), ('timestamp', False), ('uuid', False), ('comments', True), ('id', False), ('pubdate', False),