mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
Trigger explicit resize of splitter left panel when undock, because it would not be resized with correct size if it happens after sidebar get resized
This commit is contained in:
parent
04f610b32c
commit
f8d2aa0364
@ -676,7 +676,11 @@ app.classes.mail = AppJS.extend(
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!this.mail_previewAreaActive) splitter.undock();
|
||||
if (!this.mail_previewAreaActive)
|
||||
{
|
||||
splitter.undock();
|
||||
window.setTimeout(function(){splitter.left.trigger('resize.et2_split.mailSplitter');},200);
|
||||
}
|
||||
this.mail_previewAreaActive = true;
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user