From 809ce3dc44af99f1ae85ed7e019fe957e8ce0243 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 26 Apr 2023 08:41:44 +0530 Subject: [PATCH] Fix #2017708 [6.16.1*: New columns missing from column icon dropdown](https://bugs.launchpad.net/calibre/+bug/2017708) --- src/calibre/library/coloring.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/calibre/library/coloring.py b/src/calibre/library/coloring.py index 69caf8548e..e6c491295f 100644 --- a/src/calibre/library/coloring.py +++ b/src/calibre/library/coloring.py @@ -263,8 +263,7 @@ def conditionable_columns(fm): def displayable_columns(fm): yield color_row_key for key in fm.displayable_field_keys(): - if key not in ('sort', 'author_sort', 'comments', 'formats', - 'identifiers', 'path'): + if key not in ('sort', 'author_sort', 'comments', 'identifiers',): yield key