1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-30 10:36:35 +02:00

Desktop: Fixes #9737: Fix ghosting when dropping code block over another code block (#9816)

This commit is contained in:
pedr 2024-02-02 19:56:14 -03:00 committed by GitHub
parent 9a26e8aafd
commit 24776ee6ce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -629,7 +629,7 @@ const TinyMCE = (props: NoteBodyEditorProps, ref: any) => {
joplinInsert: { inline: 'ins', remove: 'all' },
joplinSub: { inline: 'sub', remove: 'all' },
joplinSup: { inline: 'sup', remove: 'all' },
code: { inline: 'code', remove: 'all', attributes: { spellcheck: false } },
code: { inline: 'code', remove: 'all', attributes: { spellcheck: 'false' } },
forecolor: { inline: 'span', styles: { color: '%value' } },
},
setup: (editor: Editor) => {