Repair label of themes in themelist.

This was broken after c563f15e93
This commit is contained in:
Derk-Jan Hartman 2014-01-02 13:04:24 +01:00
commit 8f109ea371

View file

@ -86,7 +86,7 @@ module.exports.addEditorMenuOptions = function addEditorMenuOptions (editor) {
editor.menuOptions.setTheme = themelist.themes.map(function(theme) {
return {
'textContent' : theme.desc,
'textContent' : theme.caption,
'value' : theme.theme
};
});
@ -100,4 +100,4 @@ module.exports.addEditorMenuOptions = function addEditorMenuOptions (editor) {
};
});
});