From e4f2a2fa0c2c07e9e5a1751cdd3e7d8d4848dd71 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 13 Jul 2012 16:38:38 +0530 Subject: [PATCH] ... --- Changelog.yaml | 2 +- src/calibre/gui2/preferences/search.py | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Changelog.yaml b/Changelog.yaml index c063d65041..99bcfcfeb0 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -24,7 +24,7 @@ new features: - title: "When searching, allow use of un-accented characters to match accented characters in all fields and all languages (not just authors and English as before)" - description: "The rules for matching un-accented characters are done in a language dependent way. So if your calibre interface language is set to English, n will match both n and ñ, but if it is set to Spanish, it will match only n, as in Spanish ñ is a separate alphabet in Spanish." + description: "The rules for matching un-accented characters are done in a language dependent way. So if your calibre interface language is set to English, n will match both n and ñ, but if it is set to Spanish, it will match only n, as in Spanish ñ is a separate alphabet in Spanish. This makes searching a little slower, so if you have a very large library you can turn it off via Preferences->Searching." type: major - title: "Content server: Show a best guess for the IP address the content server is currently listening at in the connect/share menu." diff --git a/src/calibre/gui2/preferences/search.py b/src/calibre/gui2/preferences/search.py index b5998022e7..5c9e31790a 100644 --- a/src/calibre/gui2/preferences/search.py +++ b/src/calibre/gui2/preferences/search.py @@ -184,7 +184,6 @@ class ConfigWidget(ConfigWidgetBase, Ui_Form): self.opt_grouped_search_make_user_categories.update_items_cache(terms) self.gst_names.blockSignals(True) self.gst_names.clear() - print (1111, self.gst_names) self.gst_names.addItem('', '') for t in terms: self.gst_names.addItem(t, t)