Elastic: Fix regression where Encrypt button wasn't displayed in mail compose toolbar (#6982)

Also fix Reply-All button handling
pull/7051/head
Aleksander Machniak 5 years ago
parent 52c755207d
commit 727f8f04d8

@ -6,6 +6,7 @@ CHANGELOG Roundcube Webmail
- Elastic: Fix initial focus on recipients input in mail compose screen
- Elastic: Fix inserting responses at cursor position (#6971)
- Elastic: Fix unread filter icon and search state on folder change (#6978)
- Elastic: Fix regression where Encrypt button wasn't displayed in mail compose toolbar (#6982)
- Enigma: Fix bug where signing option was set to disabled after saving a draft in Elastic skin (#6515)
- Redis: Improve error handling and phpredis 5.X support (#6888)
- Archive: Fix bug where next email was not displayed after Archive button use (#6965)

@ -1521,14 +1521,14 @@ function rcube_elastic_ui()
case 'reply-list':
if (rcmail.env.reply_all_mode == 1) {
var label = rcmail.gettext(args.status ? 'replylist' : 'replyall');
$('a.button.reply-all').attr('title', label).find('.inner').text(label);
$('.toolbar a.reply-all').attr('title', label).find('.inner').text(label);
}
break;
case 'compose-encrypted':
// show the toolbar button for Mailvelope
if (args.status) {
$('a.button.encrypt:not(.icon)').parent().show();
$('.toolbar a.encrypt').parent().show();
}
break;

Loading…
Cancel
Save