mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix a regression in the previous release that broke changing sections in the convert single book dialog after changing the input or output formats. Fixes #1924767 [Convert dialog navigation stops woorking](https://bugs.launchpad.net/calibre/+bug/1924767)
This commit is contained in:
parent
51d07cef5b
commit
7cbbff57ca
@ -84,7 +84,6 @@ class Config(QDialog):
|
|||||||
self.input_formats.currentIndexChanged[native_string_type].connect(self.setup_pipeline)
|
self.input_formats.currentIndexChanged[native_string_type].connect(self.setup_pipeline)
|
||||||
self.output_formats.currentIndexChanged[native_string_type].connect(self.setup_pipeline)
|
self.output_formats.currentIndexChanged[native_string_type].connect(self.setup_pipeline)
|
||||||
self.groups.setSpacing(5)
|
self.groups.setSpacing(5)
|
||||||
self.groups.selectionModel().currentChanged.connect(self.current_group_changed)
|
|
||||||
self.groups.entered[(QModelIndex)].connect(self.show_group_help)
|
self.groups.entered[(QModelIndex)].connect(self.show_group_help)
|
||||||
rb = self.buttonBox.button(QDialogButtonBox.StandardButton.RestoreDefaults)
|
rb = self.buttonBox.button(QDialogButtonBox.StandardButton.RestoreDefaults)
|
||||||
rb.setText(_('Restore &defaults'))
|
rb.setText(_('Restore &defaults'))
|
||||||
@ -249,6 +248,7 @@ class Config(QDialog):
|
|||||||
idx = oidx if -1 < oidx < self._groups_model.rowCount() else 0
|
idx = oidx if -1 < oidx < self._groups_model.rowCount() else 0
|
||||||
self.groups.setCurrentIndex(self._groups_model.index(idx))
|
self.groups.setCurrentIndex(self._groups_model.index(idx))
|
||||||
self.show_pane(idx)
|
self.show_pane(idx)
|
||||||
|
self.groups.selectionModel().currentChanged.connect(self.current_group_changed)
|
||||||
try:
|
try:
|
||||||
shutil.rmtree(self.plumber.archive_input_tdir, ignore_errors=True)
|
shutil.rmtree(self.plumber.archive_input_tdir, ignore_errors=True)
|
||||||
except Exception:
|
except Exception:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user