1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-16 00:14:34 +02:00

Desktop: Fixes #6214: Undo and redo on note title did not work in some cases

This commit is contained in:
Laurent Cozic
2022-03-03 13:53:11 +00:00
parent 32de63fad3
commit 94dc216add
3 changed files with 18 additions and 6 deletions

View File

@ -93,11 +93,11 @@ const declarations: CommandDeclaration[] = [
},
{
name: 'editor.undo',
label: () => _('Undo'),
label: () => _('Editor: %s', _('Undo')),
},
{
name: 'editor.redo',
label: () => _('Redo'),
label: () => _('Editor: %s', _('Redo')),
},
{
name: 'editor.indentLess',