diff --git a/mail/js/app.js b/mail/js/app.js index c736100ed0..b966e36489 100644 --- a/mail/js/app.js +++ b/mail/js/app.js @@ -4313,7 +4313,8 @@ app.classes.mail = AppJS.extend( widget:{}, jQClass: '.mailComposeJQueryReplyto' }}; - + var actions = egw.preference('toggledOnActions', 'mail'); + actions = actions ? actions.split(',') : []; for(var widget in widgets) { var expanderBtn = widget + '_expander'; @@ -4323,7 +4324,8 @@ app.classes.mail = AppJS.extend( if (typeof widgets[widget].widget != 'undefined' && typeof widgets[expanderBtn].widget != 'undefined' - && widgets[widget].widget.get_value().length == 0) + && widgets[widget].widget.get_value().length == 0 + && actions.indexOf(expanderBtn)<0) { widgets[expanderBtn].widget.set_disabled(false); jQuery(widgets[widget].jQClass).hide();