Fix re-positioning of the fixed header of messages list in Chrome when using minimal mode toggle and About dialog (#5711)

pull/5754/head
Aleksander Machniak 8 years ago
parent b213ee9aa0
commit cc3b79bf66

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail CHANGELOG Roundcube Webmail
=========================== ===========================
- Fix re-positioning of the fixed header of messages list in Chrome when using minimal mode toggle and About dialog (#5711)
- Fix so settings/upload.inc could not be used by plugins (#5694) - Fix so settings/upload.inc could not be used by plugins (#5694)
- Fix regression in LDAP fuzzy search where it always used prefix search instead (#5713) - Fix regression in LDAP fuzzy search where it always used prefix search instead (#5713)
- Fix bug where namespace prefix could not be truncated on folders list if show_real_foldernames=true (#5695) - Fix bug where namespace prefix could not be truncated on folders list if show_real_foldernames=true (#5695)

@ -131,6 +131,10 @@ function rcube_mail_ui()
var ismin = $(document.body).toggleClass('minimal').hasClass('minimal'); var ismin = $(document.body).toggleClass('minimal').hasClass('minimal');
save_pref('minimalmode', ismin?1:0); save_pref('minimalmode', ismin?1:0);
$(window).resize(); $(window).resize();
// This hack fixes re-positioning of the fixed header of messages list (#5711)
if (bw.chrome)
$('#mailviewsplitterv').trigger('mousedown').trigger('mouseup');
}); });
/*** mail task ***/ /*** mail task ***/

Loading…
Cancel
Save