Browse Source

Fix bug in Larry skin where headers toggle state was reset on full page preview (#8203)

pull/8503/head
Aleksander Machniak 4 years ago
parent
commit
eb5e38558d
  1. 1
      CHANGELOG.md
  2. 2
      skins/larry/ui.js

1
CHANGELOG.md

@ -13,6 +13,7 @@
- Fix undefined constant error in Installer on Windows (#8258) - Fix undefined constant error in Installer on Windows (#8258)
- Fix installation/upgrade on MySQL 5.5 - Index column size too large (#8231) - Fix installation/upgrade on MySQL 5.5 - Index column size too large (#8231)
- Fix regression in setting of contact listing name (#8260) - Fix regression in setting of contact listing name (#8260)
- Fix bug in Larry skin where headers toggle state was reset on full page preview (#8203)
## Release 1.5.0 ## Release 1.5.0

2
skins/larry/ui.js

@ -169,7 +169,7 @@ function rcube_mail_ui()
attachmentmenu_append(this); attachmentmenu_append(this);
}); });
if (get_pref('previewheaders') == '1') {
if (rcmail.env.action == 'preview' && get_pref('previewheaders') == '1') {
toggle_preview_headers(); toggle_preview_headers();
} }

Loading…
Cancel
Save