From 7579431cce2424d10e0555fe2217909c9575a8dd Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 1 May 2020 15:46:08 +0530 Subject: [PATCH] Fix #1876241 [Private bug](https://bugs.launchpad.net/calibre/+bug/1876241) --- src/calibre/gui2/store/config/chooser/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/store/config/chooser/models.py b/src/calibre/gui2/store/config/chooser/models.py index fe836e12ce..f1a3dd47c8 100644 --- a/src/calibre/gui2/store/config/chooser/models.py +++ b/src/calibre/gui2/store/config/chooser/models.py @@ -44,7 +44,7 @@ class Matches(QAbstractItemModel): HEADERS = [_('Enabled'), _('Name'), _('No DRM'), _('Headquarters'), _('Affiliate'), _('Formats')] HTML_COLS = (1,) - CENTERED_COLUMNS = (2, 3, 4) + CENTERED_COLUMNS = (0, 2, 3, 4) def __init__(self, plugins): QAbstractItemModel.__init__(self)