From 7460aad11702321c0f17e559184c9d72e0d0e4a9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 7 Feb 2018 07:32:23 +0530 Subject: [PATCH] Bulk metadata edit: Fix regression in 3.13 that made it impossible to use the Force numbering checkbox for custom series --- src/calibre/gui2/custom_column_widgets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/custom_column_widgets.py b/src/calibre/gui2/custom_column_widgets.py index 55ae5aa860..07f01292fc 100644 --- a/src/calibre/gui2/custom_column_widgets.py +++ b/src/calibre/gui2/custom_column_widgets.py @@ -1042,7 +1042,7 @@ class BulkSeries(BulkBase): apply_changes = True elif self.main_widget.text(): self.remove_series.setEnabled(False) - disable_numbering_checkboxes(idx_widget_enable=True) + self.idx_widget.setEnabled(True) apply_changes = True else: # no text, no clear. Basically reinitialize self.main_widget.setEnabled(True)