From 72c9625094afc23c03db8d6767e2fde2e0303dc4 Mon Sep 17 00:00:00 2001 From: Charles Haley <> Date: Mon, 11 Apr 2011 17:17:44 +0100 Subject: [PATCH] Add the new configure metadata download tool button to the alternate metadata single dialog --- src/calibre/gui2/metadata/single.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/calibre/gui2/metadata/single.py b/src/calibre/gui2/metadata/single.py index 4ce76d8cc8..2e5b43ceba 100644 --- a/src/calibre/gui2/metadata/single.py +++ b/src/calibre/gui2/metadata/single.py @@ -612,6 +612,10 @@ class MetadataSingleDialogAlt1(MetadataSingleDialogBase): # {{{ self.button_box.addButton(self.fetch_metadata_button, QDialogButtonBox.ActionRole) + self.config_metadata_button.setToolButtonStyle(Qt.ToolButtonTextOnly) + self.config_metadata_button.setText(_('Configure metadata downloading')) + self.button_box.addButton(self.config_metadata_button, + QDialogButtonBox.ActionRole) sto(self.button_box, self.title) def create_row(row, widget, tab_to, button=None, icon=None, span=1):