mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Fix for lp:1241515, allow unicode catalog titles when saving presets.
This commit is contained in:
parent
c01a7c7812
commit
9f011a37a7
@ -287,7 +287,7 @@ class PluginWidget(QWidget,Ui_Form):
|
|||||||
if child.objectName() == 'format':
|
if child.objectName() == 'format':
|
||||||
current_format = str(child.currentText()).strip()
|
current_format = str(child.currentText()).strip()
|
||||||
elif child.objectName() == 'title':
|
elif child.objectName() == 'title':
|
||||||
current_title = str(child.text()).strip()
|
current_title = unicode(child.text()).strip()
|
||||||
self.parentWidget().blockSignals(False)
|
self.parentWidget().blockSignals(False)
|
||||||
return current_format, current_title
|
return current_format, current_title
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user