Edit book: Fix non breaking spaces in snippets being converted to normal spaces. Fixes #1929827 [snippets do not accept non breaking spaces](https://bugs.launchpad.net/calibre/+bug/1929827)

This commit is contained in:
Kovid Goyal 2021-06-03 08:59:57 +05:30
parent 3136eac5ff
commit 5b4d4e2cc2
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -481,7 +481,7 @@ class EditSnippet(QWidget):
t.setPlaceholderText(_('The text used to trigger this snippet'))
add_row(_('Tri&gger:'), t)
self.template = t = QPlainTextEdit(self)
self.template = t = PlainTextEdit(self)
la.setBuddy(t)
add_row(_('&Template:'), t)