Fix Preview Button after changing from f-string to normal string

This commit is contained in:
Henrik Giesel 2021-05-07 02:12:37 +02:00
parent cc02563ca1
commit de8abebcd1

View File

@ -382,7 +382,7 @@ class Browser(QMainWindow):
editor._links["preview"] = lambda _editor: self.onTogglePreview()
editor.web.eval(
"$editorToolbar.then(({{ notetypeButtons }}) => notetypeButtons.appendButton({{ component: editorToolbar.PreviewButton }}, -1));"
"$editorToolbar.then(({ notetypeButtons }) => notetypeButtons.appendButton({ component: editorToolbar.PreviewButton }));"
)
gui_hooks.editor_did_init.append(add_preview_button)