From 9285c7cc83cc7e0728dacaf2c633cf11f78e490c Mon Sep 17 00:00:00 2001 From: Peter Mathis Date: Wed, 21 Feb 2024 10:38:01 +0100 Subject: [PATCH 1/2] Fix tiny format icon names --- src/plone/base/interfaces/controlpanel.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plone/base/interfaces/controlpanel.py b/src/plone/base/interfaces/controlpanel.py index c1dca1c..33eaa8f 100644 --- a/src/plone/base/interfaces/controlpanel.py +++ b/src/plone/base/interfaces/controlpanel.py @@ -440,10 +440,10 @@ class ITinyMCELayoutSchema(Interface): "Bold|bold|bold", "Italic|italic|italic", "Underline|underline|underline", - "Strikethrough|strikethrough|strikethrough", + "Strikethrough|strikethrough|strike-through", "Superscript|superscript|superscript", "Subscript|subscript|subscript", - "Code|code|code", + "Code|code|sourcecode", "Text in 2 columns|textcolumns2", "Text in 3 columns|textcolumns3", ], From 071c94ca4de1b7c3e19f80a76b6e2b2e67b0002f Mon Sep 17 00:00:00 2001 From: Peter Mathis Date: Wed, 21 Feb 2024 10:39:00 +0100 Subject: [PATCH 2/2] changenote --- news/3905.bugfix | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 news/3905.bugfix diff --git a/news/3905.bugfix b/news/3905.bugfix new file mode 100644 index 0000000..9602f44 --- /dev/null +++ b/news/3905.bugfix @@ -0,0 +1,2 @@ +Fix TinyMCE format icon names. +[petschki]