Skip to content

Commit

Permalink
fix TinyMCE control panel menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Maik Derstappen authored and thet committed Sep 22, 2021
1 parent f7dd560 commit 8a53153
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Products/CMFPlone/interfaces/controlpanel.py
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ class ITinyMCEPluginSchema(Interface):
missing_value=[],
default=[
'edit', 'table', 'format',
'tools' 'view', 'insert'])
'tools', 'view', 'insert'])

menu = schema.Text(
title=_('label_tinymce_menu', 'Menu'),
Expand All @@ -503,7 +503,7 @@ class ITinyMCEPluginSchema(Interface):
'view': {
'title': 'View',
'items': 'visualaid visualchars visualblocks preview '
'fullpage fullscreen',
'fullpage fullscreen code',
},
'format': {
'title': 'Format',
Expand All @@ -517,7 +517,7 @@ class ITinyMCEPluginSchema(Interface):
'tools': {
'title': 'Tools',
'items': 'spellchecker charmap emoticons insertdatetime '
'layer code'
'layer'
}
})
)
Expand Down

0 comments on commit 8a53153

Please sign in to comment.